Skip to content

Commit 50bb57c

Browse files
committed
Switch back to ci.yml
1 parent 6ca04af commit 50bb57c

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
lines changed
Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: Pytest
1+
name: Async-kernel tests
22

3-
on: [ push ]
3+
on: [push]
44
jobs:
55
test:
66
runs-on: ${{ matrix.os }}
@@ -29,3 +29,25 @@ jobs:
2929
- name: Run the tests
3030
timeout-minutes: 5
3131
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+
- uses: actions/upload-artifact@v4
51+
with:
52+
name: "wheel"
53+
path: dist/*.wheel

.github/workflows/ruff.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)