Skip to content

[pre-commit.ci] pre-commit autoupdate #59

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #59

Workflow file for this run

name: Lint and Type Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --all-files --hook-stage manual