Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add new slide that got left out of previous commit | id: 251
title: Talk page tutorial
summary:
content: |
Let's practice using a talk page. This link will take you to an example
talk page on Wikipedia and walk you through of replying — which you do by
making an edit, using wikicode.
When you're finished, you can return here to continue this training module.
... | |
Add build and deploy github action | # This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are pro... | |
Add Gamecraft config server file | # ===================================================================
# Gamecraft Spring Cloud Config.
# ===================================================================
# Property used on app startup to check the config server status
configserver:
name: Gamecraft config server
status: Connected to the Game... | |
Update from Hackage at 2016-11-14T00:53:54Z | homepage: https://github.com/y-kamiya/strips#readme
changelog-type: ''
hash: 8f0be9009cfa0257d9a85163bd721e11fa64f1ccf63a110ea77d095d4d55b875
test-bench-deps:
strips: -any
base: ! '>=4.6 && <5'
hspec: -any
containers: -any
mtl: -any
maintainer: y.kamiya0@gmail.com
synopsis: Initial project template from stack... | |
Create chagelog for copying swedish fact to kanji table | databaseChangeLog:
- changeSet:
id: 62
author: Pontus Doverstav
changes:
- sql:
comment: Move swedish translations from fact to kanji table
sql:
UPDATE contentschema.kanjis AS k
SET swedish = data.data
FROM (
... | |
Add muler to conda-forge with a new recipe | # Note: there are many handy hints in comments in this example -- remove them when you've finalized your recipe
# Jinja variables help maintain the recipe as you'll update the version only here.
# Using the name variable with the URL in line 14 is convenient
# when copying and pasting from another recipe, but not real... | |
Enforce repo yaml privacy key. | repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| |
Set up CI with Azure Pipelines | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buil... | |
Update from Hackage at 2018-10-11T09:17:21Z | homepage: https://github.com/aspiwack/peppermint-prover
changelog-type: markdown
hash: 92a1290568611c758abbc97c77452150ebfbf345d5fb60366cf09363133694a0
test-bench-deps: {}
maintainer: arnaud@spiwack.net
synopsis: Unfixing and recursion schemes for data types with binders
changelog: ! '# Revision history for unfix-binde... | |
Make a release on PyPI via github actions | # This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: publish
on:
push:
tags:
- "v*"
jobs:
deploy:
runs... | |
Change container to one with Ansible already installed | # CircleCI is used only for Ansible-Lint and Ansible Syntax checks
version: 2
jobs:
build:
docker:
- image: ansible/ansible:ubuntu1604
steps:
- checkout
- run:
name: Install ansible-lint
command: |
pip install ansible-lint
ansible-lint --version
... | # CircleCI is used only for Ansible-Lint and Ansible Syntax checks
version: 2
jobs:
build:
docker:
- image: williamyeh/ans:ubuntu16.04
steps:
- checkout
- run:
name: Install ansible-lint
command: |
pip install ansible-lint
ansible-lint --version
... |
Add config for Travis CI. | language: java
jdk:
- openjdk6
install: mvn clean -DbuildNumber=${TRAVIS_BUILD_NUMBER}
notifications:
irc:
channels:
- "irc.esper.net#droplet"
on_success: always
on_failure: always
| |
Update from Hackage at 2018-11-14T08:52:37Z | homepage: https://gitlab.com/igrep/pure-shuffle#readme
changelog-type: markdown
hash: a397a37d638b75cf0be80a24a40d62a926989258a6cbd1b2ee42aabb14edb4b5
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
pure-shuffle: -any
random-shuffle: -any
QuickCheck: -any
mono-traversable: -any
maintainer: yuji-yamamoto@... | |
Add a github action for CI | name: CI
on: [push, pull_request]
jobs:
windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm test
linux:
name: Linux
runs-on: ubuntu-latest
... | |
Update from Hackage at 2020-10-16T15:35:06Z | homepage: https://hackage.haskell.org/package/subG
changelog-type: markdown
hash: c5cb5dd0248214556f938d5d205c251a43892d7e5fcf5a6f9a178be03fb594fc
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Some extension to the Foldable and Monoid classes.
changelog: |
# Revision history for subG
## 0.1.0.0 -... | |
Set up CI with Azure Pipelines | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- master
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buil... | |
Update from Hackage at 2019-09-12T15:41:08Z | homepage: https://github.com/andrewthad/array-builder
changelog-type: markdown
hash: cdbca14ebed86b3501a2ff8c52c16ed6c0ead866f0afc1e7f8c6d329e1db37cc
test-bench-deps:
base: -any
array-builder: -any
tasty-hunit: -any
tasty: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Builders for arrays
changelog: |
#... | |
Create Workflow for Github Actions | name: Compilation Workflow
on: [push, pull_request]
jobs:
build:
env:
GO111MODULE: auto
TARGET: amd64
strategy:
matrix:
go-version: [1.13.x]
os: [ubuntu-18.04, ubuntu-16.04]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: action... | |
Add new links to create new issue page | blank_issues_enabled: false
contact_links:
- name: How to extract log files from DBeaver
url: https://github.com/dbeaver/dbeaver/wiki/Log-files
about: Common things you should know before creating a bug report.
- name: Try advanced database management features in DBeaver PRO
url: https://dbeaver.com/do... | |
Add a jump-prevention passive example | nojump:
icon: feather{CustomModelData:18001}
icon_disabled: feather{CustomModelData:18002}
passive: true
triggers: jump
actions:
cast:
- class: Repeat
actions:
- class: Velocity
direction: 0,-1,0
- class: Delay
parameters:
... | |
Update from Hackage at 2018-12-12T04:13:30Z | homepage: ''
changelog-type: markdown
hash: 00d1a7b7ff0890a3e3cba4032be24fe377c26e5e45d73afcacd42c98abb3b7e3
test-bench-deps: {}
maintainer: lukec@themk.net
synopsis: Derive monoid instances for product types.
changelog: ! '# Revision history for generic-monoid
## 0.1.0.0 -- 2018-12-12
* Initial release.
'
ba... | |
Enable testing on Travis using Miniconda. | language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- "2.7"
sudo: false
install:
# Install miniconda
# -----------------
- if [[ "$TRAVIS_PYTHON_VERSION" == 2* ]]; then
wget... | |
Remove annoying noisy backrace in Travis | language: ruby
rvm:
- 2.2.0
sudo: false
env:
global:
SPEC_OPTS=--backtrace --color
bundler_args: --deployment --without development
cache: bundler
before_install:
- gem install bundler
- bundle --version
before_script:
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'c... | language: ruby
rvm:
- 2.2.0
sudo: false
env:
global:
SPEC_OPTS=--color
bundler_args: --deployment --without development
cache: bundler
before_install:
- gem install bundler
- bundle --version
before_script:
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create databa... |
Add configuration for Travis CI | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec... | |
Remove three-dot-two from Travis build | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
- three-dot-two
rvm:
- 1.8.7
- 1.9.3
- ree
| before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
rvm:
- 1.8.7
- 1.9.3
- ree
|
Add workflow to auto-merge PRs | name: automerge
on:
pull_request:
types:
- edited
- labeled
- opened
- ready_for_review
- reopened
- synchronize
- unlabeled
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
jobs:
automerge:
... | |
Add GH Workflow to allow command run from issue comments | name: "Comment Run"
on:
issue_comment:
types:
- created
- edited
jobs:
comment-run:
if: contains(github.event.comment.body, '@github-actions run')
runs-on: ubuntu-latest
steps:
- name: Checkout Code (Deep)
uses: actions/checkout@master
with:
fetch-depth: 0
-... | |
Add the Xena prelude section | ---
prelude: |
The 24.0.0 release includes many new features and bug fixes. Please be
sure to read the upgrade section which describes the required actions to
upgrade your cloud from 23.0.0 (Wallaby) to 24.0.0 (Xena).
There are a few major changes worth mentioning. This is not an exhaustive
list:
... | |
Update from Hackage at 2017-03-30T04:04:08Z | homepage: https://github.com/CloudI/cloudi_api_haskell
changelog-type: ''
hash: 35aa00c308d80b3623aa592b63325206d74ead1d66acb92b317ed0a0a34f2760
test-bench-deps: {}
maintainer: mjtruog@gmail.com
synopsis: Haskell CloudI API
changelog: ''
basic-deps:
bytestring: ! '>=0.10.4'
unix: -any
base: ! '>=4.8.2.0 && <5'
... | |
Set up CI with Azure Pipelines | # ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
soluti... | |
Add playbook to create a Rackspace Cloud Server | # run with: ansible-playbook -i inventory.yml rax-create-server.yml -vvv
---
- name: Create a Rackspace Cloud Server
hosts: local
user: root
connection: local
gather_facts: False
vars:
- name: ansible-test
- flavor: 2
- image: 8d30638e-cb3e-43d1-897f-a5cd3ace521f
- region: DFW
- creds_file: /... | |
Enforce repo yaml privacy key. | repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| |
Add virsh node definition for openshift tester node | name: openshift-tester
prefix: null
cpu: "2"
cpumodel: "host-passthrough"
memory: "4096"
swap: "0"
os:
type: "linux"
variant: "rhel7"
disks:
disk1:
import_url: null
path: null
dev: "/dev/vda"
size: "40G"
cache: "unsafe"
preallocation: "metadata"
interfaces: n... | |
Update from Hackage at 2018-05-24T21:39:39Z | homepage: ''
changelog-type: markdown
hash: 42e6cd6e70ec08d2092daf5f1658b0ea4a47aa9c30cac859805632ad47e84005
test-bench-deps: {}
maintainer: joelburget@gmail.com
synopsis: ! 'Plurality monad: Zero, one, or at least two.'
changelog: ! '# Revision history for plur
## 0.1.0.0 -- YYYY-mm-dd
* First version. Releas... | |
Add workflow for Update Gradle Wrapper Action. | name: Update Gradle Wrapper
on:
schedule:
- cron: "36 6 * * MON"
jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
with:
repo-token: ${{ secret... | |
Add releasenote to tag the Tempest for Rocky release | ---
prelude: >
This release is to tag the Tempest for OpenStack Rocky release.
After this release, Tempest will support below OpenStack Releases:
* Rocky
* Queens
* Pike
* Ocata
Current development of Tempest is for OpenStack Stein development
cycle. Every Tempest commit is als... | |
Update from Hackage at 2021-07-26T15:54:23Z | homepage: https://github.com/bkomuves/polynomial-algebra
changelog-type: ''
hash: fe4fe9ec879678bc6a733714dae90ee9ab99d1c0661a742d46248d1baeb2083a
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) com
synopsis: Multivariate polynomial rings
changelog: ''
basic-deps:
base: '>=4 && <5'
array: '... | |
Add Git commit message best practices check to GHA | ---
name: Good commit messages
on: # yamllint disable-line rule:truthy
pull_request:
jobs:
check-commit-message:
runs-on: ubuntu-20.04
steps:
- name: Verify commit messages follow best practices in CI
uses: platisd/bad-commit-message-blocker@1.0.1
with:
github_token: ${{ secrets... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | |
Update from Hackage at 2016-10-26T16:23:52Z | homepage: http://github.com/dredozubov/hreader-lens
changelog-type: markdown
hash: 3dee6cb32a07a047a2ff2b0bd499d493511ad656d3b11ba950a817b2e1803b40
test-bench-deps: {}
maintainer: denis.redozubov@gmail.com
synopsis: Optics for hreader package
changelog: ! '# Revision history for hreader-lens
## 0.1.0.0 -- 2016-10-... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
install_dependencies_command: npm install
preview_docker_image: forestryio/node:12
mount_path: "/srv... | |
Set up CI with Azure Pipelines | pool:
vmImage: 'windows-latest'
variables:
buildConfiguration: 'Release'
steps:
- task: VSBuild@1
inputs:
configuration: '$(buildConfiguration)'
msbuildArgs: '/restore'
- task: VSTest@2
inputs:
configuration: '$(buildConfiguration)'
| |
Add the Travis CI config file | before_install: gem install bundler --pre
before_script: bundle exec rake db:migrate
bundler_args: --without assets:development:production
language: ruby
rvm:
- 1.9.3
| |
Update Travis to run against latest Ruby, Rails | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
before_install:
- gem update --system
- gem install turn --version 0.8.2
- gem install turn --version 0.8.3
jdk:
- openjdk6
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
- gemfiles/rails4.1.gemfile
branches:
only:... | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
jdk:
- openjdk6
branches:
only:
- master
install:
- "travis_retry bundle install"
- "bundle exec appraisal generate"
- "travis_retry bundle exec appraisal install"
|
Add supporting recipe for mizani | {% set name = "mizani" %}
{% set version = "0.3.0" %}
{% set bundle = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash = "48fe6e47f13919efec6c1695879a71d9f98d3cc2bc94508d69750ca9fd50d10d" %}
{% set build = 0 %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.{{ ... | |
Update from Hackage at 2017-01-30T18:11:29Z | homepage: https://github.com/oisdk/nat-sized-numbers#readme
changelog-type: ''
hash: 4276d445edb78cc22cf2b6049b69b3306f67e9c37bf83e4421f4d22c66523e62
test-bench-deps:
nat-sized-numbers: -any
base: -any
doctest: ! '>=0.11'
smallcheck: ! '>=1.1'
QuickCheck: ! '>=2.8'
maintainer: mail@doisinkidney.com
synopsis: ... | |
Put conda recipe (1 file) in root | # This is the recipe to create a noarch conda package for Flexx
package:
name: flexx
version: "0.3"
source:
fn: flexx-0.3.zip
url: https://pypi.python.org/packages/source/f/flexx/flexx-0.3.zip
md5: d4e7539bf06c130b70724198daa3e042
build:
script: python setup.py install
noarch_python: True
number: 5
... | |
Make the subscription id unique for the firehose-exporters | ---
- type: replace
path: /instance_groups/name=firehose/jobs/name=firehose_exporter/properties/firehose_exporter/doppler/use_unique_subscription_id?
value: true
| |
Add AppVeyor configuration to stress that this probably is OS related | version: '{build}'
skip_tags: true
environment:
TERM: dumb
install:
- SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0
- SET PATH=%JAVA_HOME%\bin;%PATH%
- echo %PATH%
- java -version
- mvnw.cmd --version
- mvnw.cmd dependency:go-offline
build_script:
- mvnw.cmd -Dmaven.javadoc.skip=true -B clean compile
tes... | |
Update from Forestry.io - Updated Forestry configuration | ---
upload_path: "/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/uploads/:year:/:month:/:day:"
body_file_url_template: "/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
| |
Update from Hackage at 2020-01-21T07:07:35Z | homepage: https://github.com/versioncloud/vformat-time#readme
changelog-type: markdown
hash: 9985d13e1a12c7567848c59046ad4d7c32b4418981acc6f3564601bf0a4244d8
test-bench-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.4 && <2.0'
vformat: ! '>=0.12 && <1.0'
vformat-time: -any
maintainer: jorah@version.cloud
synopsis: Ex... | |
Add automation for adding missing Terraform versions | name: Add New Terraform Casks
on:
schedule:
# Daily at 04:20 UTC
- cron: '20 4 * * *'
workflow_dispatch: {}
jobs:
add_new_casks:
name: Add New Terraform Casks
# Only run on the main repo
if: github.repository == 'Yleisradio/homebrew-terraforms'
runs-on: ubuntu-latest
steps:
- na... | |
Add workflow to test SCSS compilation | name: SCSS Compilation
on:
pull_request:
branches:
- 'develop'
- 'v4.x'
paths:
- '**.scss'
- '**.css'
- '.github/workflows/test-scss.yml'
push:
branches:
- 'develop'
- 'v4.x'
paths:
- '**.scss'
- '**.css'
- '.github/workflows/test-scss.ym... | |
Add paper info tev-00118 from 2006ApJ...636..777A | paper_id: 2006ApJ...636..777A
source_id: 118
data:
livetime: 7.3
significance: 8.4
pos:
glon: {val: 17.82, err: 0.03}
glat: {val: -0.74, err: 0.03}
morph:
type: gauss
sigma: {val: 0.16, err: 0.02}
spec:
type: pl2
norm: {val: 39.4, err: 2.2, err_sys: 0.3}
index: {val: 2.46, err: 0.08, err_sys: 0.2... | |
Remove 2.2 mode JRuby option | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-1.7
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m --2.2"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGO... | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-1.7
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGODB=3.2... |
Add CI Test github action | name: CI Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Kustvakt
uses: actions/checkout@v2
with:
path: Kustvakt
- name: Checkout Krill
uses: actions/checkout@v2
with:
repository: KorAP/Kri... | |
Update to 1.0.0 with LICENSE | {%set name = "sentinels" %}
{%set version = "0.0.6" %}
{%set hash_type = "sha256" %}
{%set hash_val = "5d0501f5a938825c6c4154d9f98f05d9aa041265945aa9b27f71ec8bfa5f13b9" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[... | {%set name = "sentinels" %}
{%set version = "1.0.0" %}
{%set hash_type = "sha256" %}
{%set hash_val = "7be0704d7fe1925e397e92d18669ace2f619c92b5d4eb21a89f31e026f9ff4b1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[... |
Test cxroots can be installed from pip | name: Test pip
on:
schedule:
- cron: '0 1 * * 0'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ ... | |
Set up CI with Azure Pipelines | # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other... | |
Drop support for Ruby 2.1 and 2.2 | env:
global:
- CC_TEST_REPORTER_ID=c9b8356df2031a5a72462555fe898245cf24d83c7bb82c40ddb5c6c6976c4319
sudo: false
language: ruby
cache: bundler
rvm:
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux... | env:
global:
- CC_TEST_REPORTER_ID=c9b8356df2031a5a72462555fe898245cf24d83c7bb82c40ddb5c6c6976c4319
sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-rep... |
Add continuous integration for GitHub. | name: JNI Bind CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: bazel test --cxxopt='-std=c++17' --repo_env=CC=clang ...
| |
Update from Hackage at 2019-09-28T19:49:38Z | homepage: https://github.com/LibreCybernetics/basen-hs#readme
changelog-type: ''
hash: 4bea1e86c1a682e1b275d5d26b7ad750f9102f161e02c3edf8bc4415b86cce0b
test-bench-deps:
bytestring: ! '>=0.10.8.2 && <1'
base: ! '>=4.12.0.0 && <5'
tasty-discover: -any
text: ! '>=1.2.3.1 && <2'
basen: -any
tasty-hspec: -any
... | |
Add sample config for shared stack. | roles:
stack_name: aem-roles-stack
publish_dispatcher: AEMStackPublishDispatcherRole
publish: AEMStackPublishRole
author: AEMStackAuthorRole
author_dispatcher: AEMStackAuthorDispatcherRole
orchestrator: AEMStackOrchestratorRole
chaos_monkey: AEMStackChaosMonkeyRole
| |
Test removing utest and fuzz-test from code coverage | codecov:
notify:
require_ci_to_pass: yes
coverage:
precision: 2
round: down
range: "70...100"
status:
project: yes
patch: yes
changes: no
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "header, diff"
behav... | |
Update from Hackage at 2015-07-31T20:27:13+0000 | homepage: ''
changelog-type: ''
hash: e16b329b9947e1a489e2561bfb915c6753c6b35f47cca41c4421e83f0c0fd9f2
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Bootstrap widgets for yesod
changelog: ''
basic-deps:
shakespeare: -any
email-validate: -any
either: -any
MonadRandom: -any
yesod-core: -an... | |
Add an AppVeyor settings file | version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
- ps: Install-Product node 5
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://ra... | |
Update from Hackage at 2021-08-25T19:39:17Z | homepage: ''
changelog-type: markdown
hash: e0428a41e297e0c5394f367a5b65e9d386321f89eaee1f9b08fe51e171ad4ca5
test-bench-deps: {}
maintainer: dan.firth@homtopic.tech
synopsis: Type-level computation for composite using first-class-families.
changelog: |
# Changelog for fcf-composite
## v0.1.0.0
* Add `ToComposit... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | |
Set up CI with Azure Pipelines | # ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- develop
pool:
vmImage: 'Ubuntu-16.04'
variables:
buildConfiguration: 'Release'
ste... | |
Set up CI with Azure Pipelines | # 查看更多配置信息:https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
pool:
vmImage: 'vs2017-win2016' # 使用azure devops提供的 vs2017+win2016 环境
variables:
hostBuildPath: '.\\MyBlog.Web\\MyBlog.Web.csproj' # 发布的项目的csproj
dotnetConfig: ' -c Release -f netcoreapp2.1 -o $(Build.ArtifactStagingDirectory)' #... | |
Add for testing on Travis CI | language: node_js
node_js:
- 0.4
- 0.6
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| |
Add flake8 checks to Travis-CI build | language: python
python:
#- 2.6
- 2.7
#- 3.2
- 3.3
install: pip install -r test-requirements.txt
script:
- nosetests --with-cov --cover-package=ddt
| language: python
python:
#- 2.6
- 2.7
#- 3.2
- 3.3
install: pip install -r test-requirements.txt
script:
- nosetests --with-cov --cover-package=ddt
- flake8 ddt.py test
|
Add config for automated testing using Travis CI | language: ruby
rvm:
- 2.2
cache:
directories:
- "$HOME/.berkshelf"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
env:
matrix:
- TEST=cookstyle
- TEST="foodcritic ."
- TEST="chef exec rspec"
before_install:
- chef --version
- eval "$(chef shell-init bash)"
- cookstyle --ver... | |
Use make for Travis CI. | language: node_js
node_js:
- '0.10'
install:
- npm install
- npm install bower -g
- bower install
addons:
sauce_connect: true
env:
global:
- secure: WrorXhIe0hgRgvaBzNK6PSQEw2VTHKCxqkkNXqIY80eESXETC9nw0WkeALa6Neu06G2K6PxCXuVnaDAAtEarkawiY2OD1jrQEeYm9/2Mnqj8K2f92y57a3uVmUmo4+sqRTj6Ub3q0+/hLhluRWGTNia3kmW8cJKKG6cyW... | language: node_js
node_js:
- '0.10'
script: make test-ci
install:
- npm install
- npm install bower -g
- bower install
addons:
sauce_connect: true
env:
global:
- secure: WrorXhIe0hgRgvaBzNK6PSQEw2VTHKCxqkkNXqIY80eESXETC9nw0WkeALa6Neu06G2K6PxCXuVnaDAAtEarkawiY2OD1jrQEeYm9/2Mnqj8K2f92y57a3uVmUmo4+sqRTj6Ub3q0+/hLhlu... |
Correct args for goapp tool; make unzip silent. | language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.12.zip
- unzip gae_sdk.zip
script:
- ./go_appengine/goapp -v test ./endpoints
| language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.12.zip
- unzip -q gae_sdk.zip
script:
- ./go_appengine/goapp test -v ./endpoints
|
Remove "--dev" from composer install | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; t... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./... |
Add project config for Typey-Type | # ~/.tmuxinator/typey-type.yml
name: typey-type
root: ~/steno/typey-type
# on_project_first_start:
# - git pull upstream master
# - git submodule update
# - yarn install
windows:
- editor: vim
- tests: yarn run test
- server: yarn start
- grip: grip
| |
Add workflow to test against sdists and wheels |
name: Test Distribution
on:
push:
branches: [ master ]
workflow_dispatch:
inputs:
allow_deploy:
description: 'Deploy with twine'
required: true
type: boolean
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${... | |
Add some additional SQL injection tests | ---
meta:
author: "Jose Nazario"
description: None
enabled: true
name: 942410.yaml
tests:
-
test_title: 942410-1
desc: "SQL Injection Attack"
stages:
-
stage:
input:
dest_addr: "localhost"
headers:
Host: "localhost"
Cache-Co... | |
Update from Hackage at 2021-09-18T22:45:50Z | homepage: https://github.com/cdsmith/explainable-predicates
changelog-type: markdown
hash: f15cff6d6cb711072cc103c7001d28715f7a1371aa6e61cd658e4488b1c974d1
test-bench-deps:
base: -any
hspec: -any
doctest-exitcode-stdio: -any
doctest-lib: -any
explainable-predicates: -any
maintainer: Chris Smith <cdsmith@gmail... | |
Add Travis CI configuration file | sudo: false
language: node_js
node_js:
- stable
script:
- npm run build
- npm test-sauce
notifications:
email: false
slack:
secure: KMZdV6pnRPqcqxeZ0bHBM/4GXhBiJUPmONHWlrnCYaKnJyOvpBNHeL8ubdIKkYgc5X9LsHG7k5LGyfiRbmt/o1majMje/+Gadorb9DRJQ15ZbtPBllwOeLiFnr6WykSf7UbDnY5XgmD/eNRwU1KYSC+PvAJ53LlQy53BvZc7hcU=
| |
Add config for Travis CI | language: ruby
rvm:
- 2.1.5
- 2.2.0
- ruby-head
env:
- DB=postgresql
- DB=mysql
- DB=sqlite
before_install:
- '[ "$DB" = "postgresql" ] && echo "gem \"pg\"" >> Gemfile || :'
- '[ "$DB" = "mysql" ] && echo "gem \"mysql2\"" >> Gemfile || :'
- bundle install
before_script:
- mv config/database.$DB.yml ... | |
Add test action with macOS 11 and 10.15 | on:
push:
branches:
- osagnostic
- gh-actions
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11.0, macos-10.15]
include:
- os: macos-11.0
- os: macos-10.15
steps:
- uses: actions/checkout@osagnost... | |
Update from Hackage at 2020-09-27T02:53:48Z | homepage: https://github.com/SamuelSchlesinger/mtsl
changelog-type: ''
hash: 486d917577b1a7443b51cfed41e01c527168576cd20d08266731a617fd4698ee
test-bench-deps: {}
maintainer: sgschlesinger@gmail.com
synopsis: Reified monad transformer stacks
changelog: ''
basic-deps:
base: '>=4.12 && <4.15'
mtl: '>=2.2'
all-versions... | |
Update from Hackage at 2019-04-11T15:28:57Z | homepage: https://github.com/juhp/http-directory
changelog-type: markdown
hash: cdcdaa59b0d3b2f2acf3c5823b108923dcc1e9bd58626e2e2aada24a0e1e983f
test-bench-deps: {}
maintainer: juhpetersen@gmail.com
synopsis: http directory listing library
changelog: |
# Changelog
`http-directory` uses [PVP Versioning](https://pvp... | |
Add a docker compose file that uses the published image | version: '3'
# skip the build process by using the image
services:
db:
image: postgres
web:
image: docker.pkg.github.com/batiste/django-page-cms/cms:latest
command: bash -c "python example/manage.py migrate && python example/manage.py runserver 0.0.0.0:8000"
volumes:
- .:/code/
ports:
... | |
Update from Hackage at 2020-12-31T13:59:35Z | homepage: https://hackage.haskell.org/package/phonetic-languages-permutations-array
changelog-type: markdown
hash: 349837b3d2c938caa1766b4a32e3c36999756301c044747776ba0ad74277794b
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Permutations and universal set related functions for the phonetic-languages
... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | |
Add testing with Github Actions | name: delivery
on: [push, pull_request]
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: Run Chef Delivery
uses: actionshub/chef-delivery@master
env:
CHEF_LICENSE: accept-no-persist | |
Set up CI with Azure Pipelines | # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
- releases/*
# variables:
# - group: AUAZE-CORP-DEV-CPS
pool:
name: Hosted Windows 2019 with VS2019
demands: azureps
... | |
Update from Hackage at 2015-12-29T16:35:39+0000 | homepage: ''
changelog-type: ''
hash: b9c9981e2f1e31c36f5bdac08bbdda21d42fae70829838801b5b6f944980ad97
test-bench-deps: {}
maintainer: tekn04321@gmail.com
synopsis: Status line for i3bar.
changelog: ''
basic-deps:
bytestring: -any
dyre: -any
base: ==4.8.*
time: -any
text: -any
prefix-units: -any
process: ... | |
Update from Hackage at 2018-04-13T19:09:55Z | homepage: https://github.com/Ferdinand-vW/tuple-sop#readme
changelog-type: markdown
hash: 53987c5772f7bcbe622c51494c14c5288a2465810358575a1b2f13b418b43c41
test-bench-deps:
base: ! '>=4.7 && <5'
tuple-sop: -any
generics-sop: -any
maintainer: ferdinandvwalree@gmail.com
synopsis: functions on n-ary tuples using gene... | |
Update from Hackage at 2018-09-29T20:42:00Z | homepage: ''
changelog-type: markdown
hash: 2457ba9f746fb5a1b0b9ab630c960f6e095cabc88334a1cd4c995d9cdaff4647
test-bench-deps: {}
maintainer: matthewtpickering@gmail.com
synopsis: A reimplementation of graphmod as a source plugin
changelog: ! '# Revision history for graphmod-plugin
## 0.1.0.0 -- 2018-09-29
* Ini... | |
Update from Hackage at 2021-08-26T14:45:02Z | homepage: https://github.com/patrickt/flexible-numeric-parsers
changelog-type: markdown
hash: 157ca71b142fb7027d3c3e65e1a078e15d5ca26ad094b9435d0993ff7245a7d4
test-bench-deps:
base: '>=4.12.0.0 && <5'
tasty-hedgehog: -any
text: -any
hedgehog: -any
parsers: ^>=0.12.10
flexible-numeric-parsers: -any
tasty-h... | |
Disable auto update Because versioning is weird | Categories:
- System
License: MIT
SourceCode: https://github.com/Eun/InitialVolume
IssueTracker: https://github.com/Eun/InitialVolume/issues
AutoName: InitialVolume
Summary: Set an initial volume after boot
Description: |-
Set an individual volume for the different sound channels of your device right
after b... | |
Rename ewc_ldap to st2_ldap where it slipped on a task | ---
- name: Setup st2.conf auth backend to LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend
value: ldap
backup: yes
# Don't even setup LDAP if backend_kwargs is not def... | ---
- name: Setup st2.conf auth backend to LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend
value: ldap
backup: yes
# Don't even setup LDAP if backend_kwargs is not def... |
Add linked-list yaml for generator | exercise: LinkedList
version: 1
plan: 7
modules:
- use: JSON::Tiny
methods: 'push-list pop-list shift-list unshift-list'
tests: |
for my @cases -> $case {
subtest $case.<name>, sub {
my $linkedlist = ::($exercise).new;
for |$case.<set> -> %set {
for %set {
my $value = $_.value;
... | |
Update from Hackage at 2017-05-23T20:53:46Z | homepage: ''
changelog-type: markdown
hash: 0271e373ce1cbdc0469fdaad882a64888c7bfbb30575052b7a8942a753dee184
test-bench-deps:
base: ! '>=4.9 && <4.10'
unordered-containers: -any
hspec: ! '>=2.2.0'
text: -any
hspec-core: -any
HUnit: -any
smallcheck: -any
singletons: -any
vinyl: -any
regex-compat: -an... | |
Test on hhvm but ignore failures | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer install --dev --prefer-source
script: ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script: php vendor/bin/coveralls
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --dev --prefer-source
script: ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script: php vendor/bin/coveralls
matrix:
allow_failures:
- php: hhvm
|
Add Ruby 2.1.3 to Travis | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
- rbx-2
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- jruby-19mode
- rbx-2
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.