Skip to content

Merge pull request #21 from snakemake-workflows/use-cyrcular-bioconda… #79

Merge pull request #21 from snakemake-workflows/use-cyrcular-bioconda…

Merge pull request #21 from snakemake-workflows/use-cyrcular-bioconda… #79

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches_ignore: []
jobs:
Formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
- name: Formatting
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_SNAKEMAKE_SNAKEFMT: true
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint workflow
uses: snakemake/snakemake-github-action@v1
with:
directory: .
snakefile: workflow/Snakefile
stagein: "mamba install -y -n snakemake --channel conda-forge pyarrow=6.0"
args: "--lint"
Testing:
runs-on: ubuntu-latest
needs:
- Linting
- Formatting
steps:
- uses: actions/checkout@v3
- name: Test workflow
uses: snakemake/snakemake-github-action@v1
with:
directory: .test
snakefile: workflow/Snakefile
args: "--configfile .test/config/config.yaml --use-conda --show-failed-logs -j 10 --conda-cleanup-pkgs cache"
- name: Test report
uses: snakemake/snakemake-github-action@v1
with:
directory: .test
snakefile: workflow/Snakefile
args: "--configfile .test/config/config.yaml --cores 2 --report report.zip"