Skip to content

Commit

Permalink
fix caching
Browse files Browse the repository at this point in the history
  • Loading branch information
eightysteele committed Jul 17, 2024
1 parent 0e1a078 commit dcff28b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,22 @@ jobs:
run: ./install.sh

- name: Setup caching for test assets
id: cache-assets
uses: actions/cache@v4
with:
path: assets
key: ${{ runner.os }}-${{ matrix.runner }}-assets
restore-keys: ${{ runner.os }}-${{ matrix.runner }}-assets

- name: Setup pixi cache
id: cache-pixi
uses: actions/cache@v4
with:
path: .pixi
key: ${{ runner.os }}-${{ matrix.runner }}-pixi
restore-keys: ${{ runner.os }}-${{ matrix.runner }}-pixi

- name: Run tests
- name: Run tests
run: pixi run all-tests-ci

# - name: Run tests
Expand Down

0 comments on commit dcff28b

Please sign in to comment.