Skip to content

Commit

Permalink
[CI] Allow failure on julia nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly authored Feb 27, 2024
1 parent 3eb59e1 commit 5a22af7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,17 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
if: matrix.version != 'nightly' # Only process coverage on non-nightly builds
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
if: matrix.version != 'nightly' # Only send coverage for non-nightly builds
- name: Allow failure for nightly
if: matrix.version == 'nightly'
run: echo "Nightly build failures are allowed."

docs:
name: Documentation
Expand Down

0 comments on commit 5a22af7

Please sign in to comment.