chore(deps): update pypa/gh-action-pypi-publish digest to 3697819 (#46) #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: "pip" # caching pip dependencies | |
- run: pip install -e . | |
- name: Ruff format | |
uses: chartboost/ruff-action@v1 | |
with: | |
args: format --check | |
- name: Ruff lint | |
uses: chartboost/ruff-action@v1 | |
- name: Mypy | |
run: | | |
pip install mypy | |
mypy src/ |