Skip to content

Commit 2e2ad9b

Browse files
committed
github workflow: Update
1 parent 111c76f commit 2e2ad9b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/testing.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name: sdt-python test suite
77

8-
on: [push, pull_request]
8+
on: [push, pull_request, workflow_dispatch]
99

1010
jobs:
1111
build:
@@ -19,14 +19,20 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v5
22+
uses: astral-sh/setup-uv@v7
2323
with:
2424
enable-cache: true
2525
cache-dependency-glob: "**/pyproject.toml"
26+
python-version: "3.13" # until numba supports something newer
27+
28+
- name: Install Linux libraries
29+
shell: pwsh
30+
if: ${{ matrix.os == "ubuntu" }}
31+
run: apt install -y libegl-dev
2632

2733
- name: Set up Python
2834
shell: pwsh
29-
run: uv sync
35+
run: uv sync --extra gui
3036

3137
- name: Test with pytest
3238
shell: pwsh

0 commit comments

Comments
 (0)