Skip to content

Added github workflows #1

Added github workflows

Added github workflows #1

Workflow file for this run

name: Pull Request
on:
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install Project and Test Dependencies
run: poetry install --only test,main
- name: Pytest
run: poetry run pytest
- name: MyPy
run: poetry run mypy