We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ca04af commit 50bb57cCopy full SHA for 50bb57c
.github/workflows/test.yml .github/workflows/ci.yml.github/workflows/test.yml renamed to .github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
-name: Pytest
+name: Async-kernel tests
2
3
-on: [ push ]
+on: [push]
4
jobs:
5
test:
6
runs-on: ${{ matrix.os }}
@@ -29,3 +29,25 @@ jobs:
29
- name: Run the tests
30
timeout-minutes: 5
31
run: uv run pytest -v
32
+
33
+ - name: Ruff
34
+ uses: astral-sh/ruff-action@v3
35
36
+ - name: Type checking
37
+ run: basedpyright
38
39
+ - name: Coverage
40
+ if: ${{ startsWith( matrix.python-version, '3.13' ) && startsWith(matrix.os, 'ubuntu') }}
41
+ run: |
42
+ uv run pytest --cov --cov-fail-under 99
43
+ uv build
44
45
+ - uses: actions/upload-artifact@v4
46
+ with:
47
+ name: "sdist"
48
+ path: dist/*.tar.gz
49
50
51
52
+ name: "wheel"
53
+ path: dist/*.wheel
.github/workflows/ruff.yml
0 commit comments