Merge pull request #19 from ajmaurais/single_final_sky #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nextflow Stub Runs | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
stub-run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: [ | |
'test-diann.config', | |
'test-encyclopedia-narrow-gpf.config', | |
'test-encyclopedia-wide-only.config', | |
'test-diann-pdc.config', | |
'test-msconvert-only-pdc.config', | |
'test-msconvert-only-local.config' | |
] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run (${{ matrix.config }}) | |
run: | | |
echo "Installing Nextflow:" | |
curl -s https://get.nextflow.io | bash | |
chmod +x nextflow | |
echo "Running Nextflow stub with config: ${{ matrix.config }}" | |
./nextflow run . -stub-run -c test-resources/${{ matrix.config }} |