Skip to content

Commit

Permalink
Merge pull request #268 from biowdl/BIOWDL-536
Browse files Browse the repository at this point in the history
Use github actions CI
  • Loading branch information
rhpvorderman authored Dec 9, 2020
2 parents 99330eb + 19b79d9 commit c92755e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 34 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Continuous integration

on:
pull_request:
paths:
- "**.wdl" # Workflow files and task
- "**.yml" # Ci configuration, tests and docker images
- "!docs/**"

defaults:
run:
# This is needed for miniconda, see:
# https://github.com/marketplace/actions/setup-miniconda#important
shell: bash -l {0}

jobs:
lint:
runs-on: ubuntu-latest
name: Womtool validate and submodule up to date.
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- name: install miniconda
uses: conda-incubator/[email protected]
with:
channels: conda-forge,bioconda,defaults
# Conda-incubator uses 'test' environment by default.
- name: install requirements
run: conda install -n test cromwell miniwdl wdl-aid
- name: run linting
run: bash scripts/biowdl_lint.sh
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

11 changes: 0 additions & 11 deletions requirements-test.txt

This file was deleted.

0 comments on commit c92755e

Please sign in to comment.