1 parent 5247cad commit 8e7c9a4Copy full SHA for 8e7c9a4
1 file changed
.github/workflows/tests.yaml
@@ -30,24 +30,22 @@ jobs:
30
31
- name: Install uv
32
uses: astral-sh/setup-uv@v4
33
- with:
34
- enable-cache: true
35
36
- - name: Set up python
+ - name: Set up Python
37
uses: actions/setup-python@v4
38
with:
39
- python-version: ${{ matrix.python-version}}
+ python-version: ${{ matrix.python-version }}
40
41
- name: Install system dependencies (Ubuntu)
42
if: runner.os == 'Linux'
43
run: |
44
sudo apt-get update
45
sudo apt-get install -y libglu1-mesa
46
-
+
47
- name: Install dependencies
48
49
- uv sync --extra dev --extra io --extra viz
50
uv pip install "meshio @ git+https://github.com/matnoel/meshio.git@medit_higher_order_elements"
+ uv pip install .[dev,io,viz]
51
52
- name: Run tests
53
- run: uv run pytest
+ run: uv run pytest
0 commit comments