Skip to content

nr/support type objects #22

nr/support type objects

nr/support type objects #22

Workflow file for this run

name: "Python"
on:
push: { branches: [ "develop" ], tags: [ "*" ] }
pull_request: { branches: [ "develop" ] }
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.x"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: "${{ matrix.python-version }}" }
- run: pipx install pdm
- run: pdm install
- run: pdm run mypy .
- run: pdm run ruff check
- run: pdm run ruff format --check