Merging Feat/selection #9
Workflow file for this run
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
# Adopted from https://github.com/nf-core/modules/blob/master/.github/workflows/test.yml | |
name: Lint and -stub on Linux/Docker | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Cancel if a newer run is started | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: "pip" | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Run pre-commit | |
run: pre-commit run --all-files | |
stub-test: | |
runs-on: ubuntu-latest | |
name: Run stub test with docker | |
env: | |
NXF_ANSI_LOG: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nextflow | |
uses: nf-core/setup-nextflow@v1 | |
with: | |
version: "23.04.4" | |
- name: Run stub-test | |
run: | | |
nextflow run \ | |
main.nf \ | |
-profile local,docker \ | |
-stub \ | |
-params-file tests/stub/params.json | |
confirm-pass: | |
runs-on: ubuntu-latest | |
needs: [pre-commit, stub-test] | |
if: always() | |
steps: | |
- name: All tests ok | |
if: ${{ success() || !contains(needs.*.result, 'failure') }} | |
run: exit 0 | |
- name: One or more tests failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 | |
- name: debug-print | |
if: always() | |
run: | | |
echo "toJSON(needs) = ${{ toJSON(needs) }}" | |
echo "toJSON(needs.*.result) = ${{ toJSON(needs.*.result) }}" |