Skip to content

chore(ci): from mypy to pyright #7

chore(ci): from mypy to pyright

chore(ci): from mypy to pyright #7

Workflow file for this run

# Lint code and (optionally) apply fixes
name: Lint code
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.0
- uses: pre-commit-ci/lite-action@v1.0.1
if: always()
with:
msg: 'chore(fmt): auto fixes from pre-commit hooks'