Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
jobs:
run-unit-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v5
Expand Down Expand Up @@ -38,6 +39,17 @@ jobs:
- name: Run type checking
run: uv run pyright --stats

- name: Generate coverage HTML
run: uv run coverage html --directory coverage_html

- name: Upload coverage HTML artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: coverage-html
path: coverage_html


check-backwards-compatibility:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ license-files = ["LICENSE"]
name = "dltype"
readme = "README.md"
requires-python = ">=3.10"
version = "0.13.2"
version = "0.14.0"

[project.optional-dependencies]
jax = ["jax>=0.6.2"]
Expand Down
Loading
Loading