ci: add type checking to ci

This commit is contained in:
Marc 2024-11-15 23:22:32 -05:00
parent 0b2a911405
commit 21a6e47eed
Signed by: marc
GPG key ID: 048E042F22B5DC79
2 changed files with 5 additions and 1 deletions

View file

@ -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]

View file

@ -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",