We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5fc8d1 commit c2a1d87Copy full SHA for c2a1d87
1 file changed
.github/workflows/python-test.yml
@@ -8,21 +8,11 @@ jobs:
8
tests:
9
runs-on: ubuntu-latest
10
11
- env:
12
- # Configure a constant location for the uv cache
13
- UV_CACHE_DIR: /tmp/.uv-cache
14
-
15
steps:
16
- uses: actions/checkout@v4
17
- uses: astral-sh/setup-uv@v6
18
- - name: Restore cache
19
- uses: actions/cache@v4
20
with:
21
- path: /tmp/.uv-cache
22
- key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
23
- restore-keys: |
24
- uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
25
- uv-${{ runner.os }}
+ enable-cache: true
26
- name: Install apt dependencies
27
run: sudo apt install -y gcc yosys
28
- name: Run all tests
@@ -31,5 +21,3 @@ jobs:
31
uses: codecov/codecov-action@v4
32
env:
33
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
34
- - name: Prune uv cache
35
- run: uv cache prune --ci
0 commit comments