Skip to content

Merge pull request #17 from TRON-Bioinformatics/add-ci-profile #97

Merge pull request #17 from TRON-Bioinformatics/add-ci-profile

Merge pull request #17 from TRON-Bioinformatics/add-ci-profile #97

Workflow file for this run

name: Automated tests
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: defaults,conda-forge,bioconda
- name: Install dependencies
run: |
apt-get update && apt-get --assume-yes install wget make procps software-properties-common
wget -qO- https://get.nextflow.io | bash && cp nextflow /usr/local/bin/nextflow
conda update conda
- name: Conda info
shell: bash -l {0}
run: conda config --show-sources
- name: Run tests
run: |
export NXF_VER=22.04.5
make