Skip to content

Commit 7fda6b7

Browse files
committed
Fix test-nightly CI
Forgot to install Pixi
1 parent 380f833 commit 7fda6b7

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/upstream-dev-ci.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,20 @@ jobs:
6262
- uses: actions/checkout@v5
6363
with:
6464
fetch-depth: 0 # Fetch all history for all branches and tags.
65-
65+
- name: Restore cached pixi lockfile
66+
uses: actions/cache/restore@v4
67+
id: restore-pixi-lock
68+
with:
69+
enableCrossOsArchive: true
70+
path: |
71+
pixi.lock
72+
key: ${{ needs.cache-pixi-lock.outputs.cache-id }}
73+
- uses: prefix-dev/setup-pixi@v0.9.0
74+
with:
75+
pixi-version: ${{ env.PIXI_VERSION }}
76+
cache: true
77+
environments: ${{ matrix.pixi-env }}
78+
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
6679
- name: Version info
6780
run: |
6881
pixi run -e ${{matrix.pixi-env}} python xarray/util/print_versions.py

0 commit comments

Comments
 (0)