Skip to content
33 changes: 32 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
platform-version:
- "ubuntu-24.04"
include:
# Python 3.7 only runs on Ubuntu 22.04
- python-version: "3.7"
platform-version: "ubuntu-22.04"
runs-on: ${{ matrix.platform-version }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,3 +42,28 @@ jobs:
- name: Test with pytest
run: |
pytest

ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install ruff based off pyproject.toml
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
with:
version-file: "pyproject.toml"

mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[lint,test]
- name: Run MyPy
run: |
mypy .
Loading