Skip to content

Commit

Permalink
fix: πŸ› Add continue-on-error to allow nightly to fail
Browse files Browse the repository at this point in the history
On Test.yml, add missing continue-on-error that interacts with
allow_failure in the matrix and decides whether the ubilds can fail or
not. This allows nightly builds to fail.

βœ… Closes: #51
  • Loading branch information
abelsiqueira committed May 17, 2024
1 parent 20f952d commit daff692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow_failure }}
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions template/.github/workflows/Test.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
test:
{% raw %}name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}{% endraw %}
continue-on-error: ${{ matrix.allow_failure }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit daff692

Please sign in to comment.