Skip to content

Commit

Permalink
Add travis file
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Nov 16, 2018
1 parent 272fa05 commit 01f1ed3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## Inspired/copied from https://github.com/snakemake-workflows/ngs-test-data/blob/master/.travis.yml
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.6"

install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda config --add channels defaults
- conda config --add channels conda-forge
- conda config --add channels bioconda
- conda create -q -n snakemake snakemake python=$TRAVIS_PYTHON_VERSION

script:
- source activate snakemake
# run the workflow
- snakemake --use-conda runfastqc

0 comments on commit 01f1ed3

Please sign in to comment.