Skip to content

Corrected argument order #10

Corrected argument order

Corrected argument order #10

Workflow file for this run

name: Pull Request
on:
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
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