Skip to content

Merge pull request #2 from pathsim/feat/drop-ruff #5

Merge pull request #2 from pathsim/feat/drop-ruff

Merge pull request #2 from pathsim/feat/drop-ruff #5

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # full history so setuptools-scm can derive the version
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[test]" mypy
- name: mypy
run: mypy src/pathsim_toolbox
- name: pytest
run: pytest tests/ -v --tb=short