Skip to content

Addressing main PR comments #77

Addressing main PR comments

Addressing main PR comments #77

Workflow file for this run

name: "Mypy"
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
jobs:
mypy:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.14.0"] # 3.14.1 has upstream bug
steps:
- uses: actions/checkout@v4
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- run: pip install '.[dev]'
- run: mypy multiqc
- run: mypy tests