Skip to content

pre-commit autoupdate (#103) #84

pre-commit autoupdate (#103)

pre-commit autoupdate (#103) #84

Workflow file for this run

name: Lint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install ruff mypy 'pyright<=1.1.385' --upgrade
- name: ruff
run: |
ruff check .
ruff format --check .
- name: mypy
run: mypy ${{ github.event.repository.name }}
- name: pyright
run: pyright