File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CI"
2+ on :
3+ pull_request :
4+ branches :
5+ - " reorg"
6+ push :
7+ branches :
8+ - " reorg"
9+ jobs :
10+ ci :
11+ runs-on : " ubuntu-latest"
12+ steps :
13+ - name : " Check out the code"
14+ uses : " actions/checkout@v4"
15+ - name : " Install uv"
16+ uses : " astral-sh/setup-uv@v5"
17+ - name : " Set up Python"
18+ run : " uv python install"
19+ - name : " Install just"
20+ run : " sudo apt install just"
21+ - name : " Run all code checks"
22+ run : " just check"
23+ - name : " Build the developer documentation"
24+ run : " just docs"
25+ - name : " Build the test coverage report"
26+ run : " just coverage-report"
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ alias t := test
3434alias tc := test-contract
3535# TODO(Liam): Revert back to regular check once you're done fixing type check issues.
3636alias cv := coverage
37+ alias cvr := coverage-report
3738alias do := docs
3839alias c := temp-check
3940alias d := dev
@@ -63,6 +64,10 @@ test-contract: _dj_makemigrations _dj_migrate
6364coverage :
6465 cd src && coverage report -m
6566
67+ # Build the HTML test coverage report.
68+ coverage-report :
69+ cd src && coverage html
70+
6671# Build the developer documentation site.
6772docs :
6873 cd docs && make html
You can’t perform that action at this time.
0 commit comments