Skip to content

updates

updates #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: python -m pip install -e ".[dev]"
- name: Test
run: pytest -q
- name: Ruff
run: ruff check .
- name: Black
run: black --check .
- name: Mypy
run: mypy subs_diff