Skip to content

Bump mypy from 1.14.1 to 1.15.0 #45

Bump mypy from 1.14.1 to 1.15.0

Bump mypy from 1.14.1 to 1.15.0 #45

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: poetry run pytest