Skip to content

Commit 660996a

Browse files
dlangermdlangerm-stackav
authored andcommitted
bump version, report coverage as a comment
1 parent 421241a commit 660996a

3 files changed

Lines changed: 785 additions & 675 deletions

File tree

.github/workflows/pr.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
jobs:
1212
run-unit-tests:
1313
runs-on: ubuntu-latest
14+
1415
steps:
1516
- name: Checkout repository
1617
uses: actions/checkout@v5
@@ -38,6 +39,17 @@ jobs:
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:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ license-files = ["LICENSE"]
3434
name = "dltype"
3535
readme = "README.md"
3636
requires-python = ">=3.10"
37-
version = "0.13.2"
37+
version = "0.14.0"
3838

3939
[project.optional-dependencies]
4040
jax = ["jax>=0.6.2"]

0 commit comments

Comments
 (0)