Skip to content

Commit e18252f

Browse files
committed
ci: enable tests and coverage in GitHub Actions
Add test execution and coverage reporting to quality-checks job: - Run tests via `just test cpy314` - Run coverage report via `just check-coverage cpy314` Note: This work was completed with AI assistance (Claude Code).
1 parent b09e4da commit e18252f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ jobs:
6666
- name: Run static type checking with ty
6767
run: just check-typing cpy314
6868

69-
# - name: Run tests and generate an HTML coverage report
70-
# run: just check-coverage cpy314
69+
- name: Run tests
70+
run: just test cpy314
71+
72+
- name: Run tests with coverage report
73+
run: just check-coverage cpy314
7174

7275
documentation:
7376
name: Documentation Build

0 commit comments

Comments
 (0)