add optional fastp_path for local version of fastp with a patch #364
Workflow file for this run
This file contains hidden or 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: test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Micromamba | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| micromamba-version: '1.5.10-0' # any version from https://github.com/mamba-org/micromamba-releases | |
| post-cleanup: 'all' | |
| - name: Setup Nextflow latest-edge | |
| uses: nf-core/setup-nextflow@v1 | |
| with: | |
| version: 24.04.4 | |
| - name: Install nf-test | |
| uses: nf-core/setup-nf-test@v1 | |
| with: | |
| version: 0.9.0 | |
| - name: Run Tests | |
| run: nf-test test --verbose |