Skip to content

Merge branch 'main' of github.com:snakemake/snakemake-interface-softw… #143

Merge branch 'main' of github.com:snakemake/snakemake-interface-softw…

Merge branch 'main' of github.com:snakemake/snakemake-interface-softw… #143

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches-ignore: []
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v5
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0
- name: Check formatting
run: pixi run format --check .
linting:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v5
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0
- name: Check code
run: pixi run lint
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0
- name: Run pytest
run: pixi run test -v
- name: Run Coverage
run: pixi run coverage-report