Skip to content

Commit 0557162

Browse files
committed
fix
1 parent 75f55d0 commit 0557162

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
use-latest-deps:
19-
- true
20-
- false
18+
dep-type:
19+
- latest
20+
- frozen
2121
runs-on: ${{ inputs.os }}
2222
steps:
2323
- name: Checkout
@@ -32,14 +32,14 @@ jobs:
3232

3333
- name: Run tests
3434
run: |
35-
if [ "${{ matrix.use-latest-deps }}" = "true" ]; then
35+
if [ "${{ matrix.dep-type }}" = "latest" ]; then
3636
make dev-latest test
3737
else
3838
make dev test
3939
fi
4040
4141
- name: Publish test coverage
42-
if: ${{ !matrix.use-latest-deps }}
42+
if: ${{ matrix.dep-type == 'frozen' }}
4343
uses: codecov/codecov-action@v4
4444
env:
4545
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)