Skip to content

Commit 4ba803a

Browse files
committed
Fix testing action
1 parent 4050e66 commit 4ba803a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/testing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Testing
22
on: [push, pull_request]
33

44
jobs:
5-
test:
5+
tests:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v4
@@ -11,15 +11,15 @@ jobs:
1111
uses: prefix-dev/setup-pixi@v0.9.0 # pin the action version
1212
with:
1313
pixi-version: v0.49.0 # pin the pixi binary version (optional)
14-
cache: true # enable caching of installed envs
14+
# cache: true # enable caching of installed envs
1515
# only write new caches on main pushes (TODO: Enable)
1616
# cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
17-
# ensure the 'test' environment(s) are installed
17+
# ensure the 'tests' environment(s) are installed
1818
environments: tests
1919
# don't activate env (we'll call pixi run -e test explicitly)
2020
activate-environment: false
2121
# prefer using existing lockfile if present (faster, deterministic)
22-
locked: true
22+
# locked: true
2323

2424
- name: Verify pixi and run tests
2525
run: |

0 commit comments

Comments
 (0)