pr and issue templates + typecheck ci python #138

Merged
zach merged 9 commits from 135-issue-pr-templates into main 2026-07-10 18:19:23 +02:00
2 changed files with 27 additions and 0 deletions
Showing only changes of commit 246ee67fb3 - Show all commits
+23
View File
@@ -81,6 +81,29 @@ jobs:
cd cli
python -m pytest tests/ -v
typecheck:
runs-on: alpine
container: node:26-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install tools
run: |
apk add --no-cache \
git \
python3 \
py3-pip
python3 -m venv .venv
. .venv/bin/activate
pip install --no-cache-dir basedpyright
- name: Type check
run: |
. .venv/bin/activate
basedpyright
buildcheck:
runs-on: alpine
container: node:26-alpine
+4
View File
@@ -54,6 +54,10 @@ select = [
"RUF",
]
[tool.basedpyright]
typeCheckingMode = "basic"
include = ["cli/src"]
[tool.pytest.ini_options]
testpaths = ["cli/tests"]
pythonpath = ["cli/src"]