refactor/type-hint-fixes #1

Merged
marc merged 4 commits from refactor/type-hint-fixes into main 2024-11-16 04:36:22 +00:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 62d4996d12 - Show all commits

View file

@ -5,6 +5,7 @@ jobs:
runs-on: runner-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/astral-sh/setup-uv@v3
- name: Linting
run: pipx run pre-commit run ruff -a
- name: Format
@ -13,6 +14,11 @@ 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: |
uv venv
uv pip 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",