Skip to content

Commit ee01f2c

Browse files
committed
Fix CI
1 parent 45e8e1b commit ee01f2c

2 files changed

Lines changed: 55 additions & 68 deletions

File tree

.github/workflows/testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@ jobs:
1212
git submodule update --init --recursive
1313
1414
- name: Setup Pixi (installs pixi + caches envs) # https://github.com/marketplace/actions/setup-pixi
15-
uses: prefix-dev/setup-pixi@v0.9.0 # pin the action version
15+
uses: prefix-dev/setup-pixi@v0.9.3 # pin the action version
1616
with:
17-
pixi-version: v0.53.0 # pin the pixi binary version (optional)
17+
pixi-version: v0.61.0 # pin the pixi binary version (optional)
1818
cache: true # enable caching of installed envs
1919
# only write new caches on main pushes (TODO: Enable)
2020
# cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
2121
# ensure the 'tests' environment(s) are installed
2222
environments: tests
2323
# don't activate env (we'll call pixi run -e test explicitly)
2424
activate-environment: false
25+
frozen: true
26+
locked: false # TODO: Re-enable once we have figured out the lock file not up to date issues in CI
2527

2628
- name: Verify pixi and run tests
2729
run: |

0 commit comments

Comments
 (0)