ci: add type checking to ci
This commit is contained in:
parent
0b2a911405
commit
21a6e47eed
2 changed files with 5 additions and 1 deletions
|
@ -13,6 +13,10 @@ jobs:
|
|||
run: pipx run pre-commit run check-yaml -a
|
||||
- name: Validate shell scripts
|
||||
run: pipx run pre-commit run shellcheck -a
|
||||
- name: Check types
|
||||
run: |
|
||||
pipx install .
|
||||
pipx run pre-commit run pyright -a
|
||||
export-trace:
|
||||
runs-on: runner-latest
|
||||
needs: [static-analysis]
|
||||
|
|
|
@ -3,7 +3,7 @@ name = "blogue"
|
|||
version = "0.1.0"
|
||||
description = "Basic static site generator that powers my blog."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"click>=8.1.7",
|
||||
"httpx>=0.27.2",
|
||||
|
|
Loading…
Reference in a new issue