Skip to content

Commit

Permalink
ci: run isort and mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
tngraf committed Dec 26, 2023
1 parent 7674ec8 commit 8d84025
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -55,3 +55,12 @@ jobs:
# ignore_files: examples/ignore/*
# ignore_path: examples/.markdownlintignore
# rules: examples/rules/custom.js

- name: Run isort
run: |
poetry run isort .
- name: Run mypy
run: |
poetry run mypy .

0 comments on commit 8d84025

Please sign in to comment.