We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac68453 commit 7582ec3Copy full SHA for 7582ec3
.github/workflows/main.yaml
@@ -27,13 +27,6 @@ jobs:
27
continue-on-error: '${{ matrix.allow-failure }}'
28
name: 'test (${{ matrix.python-version }})'
29
steps:
30
- - name: Preserve Wasm cache
31
- uses: actions/cache@v3
32
- with:
33
- path: |
34
- ~/.cache/wasmtime
35
- ~/.cache/YoWASP
36
- key: ${{ runner.os }}-wasm
37
- name: Check out source code
38
uses: actions/checkout@v3
39
with:
@@ -50,6 +43,13 @@ jobs:
50
43
sudo apt-get install yices2
51
44
pip install codecov
52
45
pdm install --dev
46
+ - name: Cache YoWASP build products
47
+ uses: actions/cache@v3
48
+ with:
49
+ path: ~/.cache/YoWASP
+ key: YoWASP-${{ runner.os }}-${{ hashFiles('./.venv/**/*.wasm') }}
+ restore-keys: |
+ YoWASP-${{ runner.os }}-
53
- name: Run tests
54
run: |
55
pdm run test
0 commit comments