File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111jobs :
1212 run-unit-tests :
1313 runs-on : ubuntu-latest
14+
1415 steps :
1516 - name : Checkout repository
1617 uses : actions/checkout@v5
3839 - name : Run type checking
3940 run : uv run pyright --stats
4041
42+ - name : Generate coverage HTML
43+ run : uv run coverage html --directory coverage_html
44+
45+ - name : Upload coverage HTML artifact
46+ if : success()
47+ uses : actions/upload-artifact@v4
48+ with :
49+ name : coverage-html
50+ path : coverage_html
51+
52+
4153 check-backwards-compatibility :
4254 strategy :
4355 matrix :
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ license-files = ["LICENSE"]
3434name = " dltype"
3535readme = " README.md"
3636requires-python = " >=3.10"
37- version = " 0.13.2 "
37+ version = " 0.14.0 "
3838
3939[project .optional-dependencies ]
4040jax = [" jax>=0.6.2" ]
You can’t perform that action at this time.
0 commit comments