Skip to content

Commit 8e7c9a4

Browse files
committed
Remove enable-cache: true in .github/workflows/tests.yaml
1 parent 5247cad commit 8e7c9a4

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,22 @@ jobs:
3030

3131
- name: Install uv
3232
uses: astral-sh/setup-uv@v4
33-
with:
34-
enable-cache: true
3533

36-
- name: Set up python
34+
- name: Set up Python
3735
uses: actions/setup-python@v4
3836
with:
39-
python-version: ${{ matrix.python-version}}
37+
python-version: ${{ matrix.python-version }}
4038

4139
- name: Install system dependencies (Ubuntu)
4240
if: runner.os == 'Linux'
4341
run: |
4442
sudo apt-get update
4543
sudo apt-get install -y libglu1-mesa
46-
44+
4745
- name: Install dependencies
4846
run: |
49-
uv sync --extra dev --extra io --extra viz
5047
uv pip install "meshio @ git+https://github.com/matnoel/meshio.git@medit_higher_order_elements"
48+
uv pip install .[dev,io,viz]
5149
5250
- name: Run tests
53-
run: uv run pytest
51+
run: uv run pytest

0 commit comments

Comments
 (0)