Skip to content

Commit 20630b6

Browse files
Fix GitHub Actions workflow
- Disable pixi cache to avoid pixi.lock issues - Update example commands to use actual example files - Fix test count in summary (46 not 79) Co-Authored-By: Warp <agent@warp.dev>
1 parent 28940d0 commit 20630b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup pixi
2121
uses: prefix-dev/setup-pixi@v0.8.1
2222
with:
23-
cache: true
23+
cache: false
2424

2525
- name: Check Mojo version
2626
run: pixi run mojo-version
@@ -30,9 +30,9 @@ jobs:
3030

3131
- name: Run examples
3232
run: |
33-
pixi run example-simple
34-
pixi run example-pixi
33+
mojo -I src examples/read_example.mojo
34+
mojo -I src examples/write_example.mojo
3535
3636
- name: Test summary
3737
if: always()
38-
run: echo "✅ All 79 tests passed"
38+
run: echo "✅ All 46 tests passed"

0 commit comments

Comments
 (0)