Skip to content

.freeze() returns self #11

.freeze() returns self

.freeze() returns self #11

name: Lints and Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main, "*" ]
workflow_dispatch:
jobs:
lints_and_checks:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: ./.github/actions/poetry_cached
- name: Static type checking with `mypy`
run: |
poetry run mypy
- name: Linting with `pre-commit` and `ruff`
run: |
poetry run pre-commit run --all-files --show-diff-on-failure