feat: allow to use custom snakemake branch instead of conda version (… #171
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches_ignore: [] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test run | |
| uses: ./ | |
| with: | |
| directory: .test | |
| snakefile: .test/Snakefile | |
| args: "--cores 1" | |
| - name: Test run branch | |
| uses: ./ | |
| with: | |
| directory: .test | |
| snakefile: .test/Snakefile | |
| args: "--cores 1" | |
| snakemake-branch: "main" | |
| - name: Test containerize | |
| uses: ./ | |
| with: | |
| directory: .test | |
| snakefile: .test/Snakefile | |
| install-apptainer: true | |
| args: "--cores 1" | |
| task: "containerize" | |
| - name: Show Dockerfile | |
| run: | | |
| cat Dockerfile |