Skip to content

Commit 54eed2a

Browse files
Update workflow, will that work?
1 parent e5ff3df commit 54eed2a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/[email protected]
15+
with:
16+
fetch-depth: 0
1517
- uses: actions/setup-python@v6
1618
- uses: pre-commit/[email protected]
1719

@@ -25,16 +27,20 @@ jobs:
2527
- uses: prefix-dev/[email protected]
2628
with:
2729
environments: ${{ matrix.environment }}
28-
frozen: true # This seems hacky?
30+
# frozen: true # This seems hacky?
2931

30-
- name: Clean git workspace
32+
- name: Clean workspace
3133
run: |
3234
git clean -fdx
3335
git reset --hard HEAD
3436
37+
- name: Update lockfile
38+
run: |
39+
pixi lock
40+
3541
- name: Run tests and generate coverage report
3642
run: |
37-
pixi clean && pixi run -e ${{ matrix.environment }} test-cov
43+
pixi run -e ${{ matrix.environment }} test-cov
3844
3945
- name: Upload code coverage
4046
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)