Add BCLConvert support (#67) #87
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: Run tests | |
| on: [push, pull_request] | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| NXF_VER: 21.04.1 | |
| NXF_ANSI_LOG: false | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Cache singularity images | |
| uses: actions/[email protected] | |
| with: | |
| path: work/singularity | |
| key: singularity-${{ hashFiles('config/nextflow_config/singularity.config') }} | |
| restore-keys: singularity- | |
| - name: Install Singularity | |
| uses: eWaterCycle/setup-singularity@v7 | |
| with: | |
| singularity-version: 3.8.3 | |
| - name: Install Nextflow | |
| env: | |
| CAPSULE_LOG: none | |
| run: | | |
| curl -fsSL https://github.com/nextflow-io/nextflow/releases/download/v24.10.4/nextflow -o nextflow | bash | |
| sudo mv nextflow /usr/local/bin/ | |
| - name: Make Nextflow binary executable | |
| run: chmod +x /usr/local/bin/nextflow | |
| - name: Set up python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| architecture: x64 | |
| - name: Install test requirements | |
| run: | | |
| pip install -r requirements-dev.txt | |
| - name: Run tests | |
| run: pytest tests | |
| - name: Run Black code formatting check | |
| run: black --check . |