Skip to content

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.7.4 #39

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.7.4

chore(deps): update pre-commit hook charliermarsh/ruff-pre-commit to v0.7.4 #39

Workflow file for this run

name: Run tests
on:
- pull_request
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: pdm install -G :all
- name: Run tests
run: pdm run pytest