Skip to content

Commit 3dd6b20

Browse files
committed
fix: remove other OS other than ubuntu
1 parent b8df748 commit 3dd6b20

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
os: [ubuntu-latest, macos-latest, windows-latest]
29+
os: [ubuntu-latest]
3030
python-version: ["3.11", "3.12", "3.13"]
3131
steps:
3232
# Pinned to immutable commit SHAs (not @v4 / @v5) so a compromised tag
@@ -75,6 +75,8 @@ jobs:
7575
python -m pip install 'flask>=3.0' 'fpdf2>=2.7' 'mypy>=1.10'
7676
7777
- name: Run mypy
78+
# Transitional only (maintainer consensus): keeps CI green until `mypy` exits
79+
# zero on this repo — then delete this line so type errors fail the job.
7880
continue-on-error: true
7981
run: mypy --ignore-missing-imports --no-strict-optional --pretty .
8082

0 commit comments

Comments
 (0)