Skip to content

Commit c11242d

Browse files
committed
🔧 don't continue on error during installation
1 parent 27cc9b3 commit c11242d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535

3636
outputs:
3737
matrix: ${{ steps.set-matrix.outputs.matrix }}
38+
3839
steps:
3940
- uses: actions/checkout@v4
4041

@@ -56,9 +57,11 @@ jobs:
5657
needs: generate-matrix
5758
timeout-minutes: 3
5859
runs-on: ubuntu-latest
60+
5961
strategy:
6062
fail-fast: false
6163
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
64+
6265
steps:
6366
- uses: actions/checkout@v4
6467

@@ -72,7 +75,6 @@ jobs:
7275
run: uv tool install tox --with tox-uv
7376

7477
- name: Install dependencies
75-
continue-on-error: true
7678
run: |
7779
rm -rf .venv
7880
uv add --no-build-package=numpy "numpy<=${{ matrix.numpy }}"

0 commit comments

Comments
 (0)