We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17356fc commit 2c0938aCopy full SHA for 2c0938a
1 file changed
.github/workflows/python-ci.yml .github/workflows/ci.yml.github/workflows/python-ci.yml renamed to .github/workflows/ci.yml
@@ -1,8 +1,6 @@
1
-name: Python CI
+name: AoC Python CI
2
3
on:
4
- push:
5
- branches: [ main ]
6
pull_request:
7
branches: [ main ]
8
@@ -31,7 +29,7 @@ jobs:
31
29
run: uv run ruff check .
32
30
33
- name: Run type checking
34
- run: uv run mypy aoc/ solutions/ templates/ tests/ main.py
+ run: uv run mypy --exclude '(.venv|.pdm-build|__pycache__|.ruff_cache|.mypy_cache|.pytest_cache)' .
35
36
test:
37
name: Tests
0 commit comments