Skip to content

Update pre-commit and remove some lint #204

Update pre-commit and remove some lint

Update pre-commit and remove some lint #204

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
permissions: {}
concurrency:
group: main-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Run tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.12"
- name: Install dependencies
run: python -m pip install -e . --group test
- name: Run tests
run: pytest -svra