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.
test-nightly
1 parent 380f833 commit 7fda6b7Copy full SHA for 7fda6b7
.github/workflows/upstream-dev-ci.yaml
@@ -62,7 +62,20 @@ jobs:
62
- uses: actions/checkout@v5
63
with:
64
fetch-depth: 0 # Fetch all history for all branches and tags.
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
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' }}
79
- name: Version info
80
run: |
81
pixi run -e ${{matrix.pixi-env}} python xarray/util/print_versions.py
0 commit comments