Skip to content

ci: bump the composition test's substrate pin to v0.85.0 (#6) #14

ci: bump the composition test's substrate pin to v0.85.0 (#6)

ci: bump the composition test's substrate pin to v0.85.0 (#6) #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Setup Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.12'
- name: Install
run: pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Type-check (mypy)
run: mypy snakemake_executor_plugin_spawn
- name: Test (pytest)
run: pytest -q