Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: stop using continue-on-error #49

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,16 +147,20 @@ jobs:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
persist-credentials: false
- name: '[before] Print some output for debugging purposes [allow this step to fail]'
- name: '[before] Print some output for debugging purposes'
shell: bash
run: |
set -x
echo "PATH is: ${PATH:?}"
which -a julia
julia --version
which -a juliaup
juliaup --version
continue-on-error: true
# which -a julia
# julia --version
# which -a juliaup
# juliaup --version
# continue-on-error: true
# Note: we intentionally do not use `continue-on-error` for individual job steps.
# If you use `continue-on-error` for an individual job step, then if that job
# step fails, it prints a bunch of "error" annotations in the "Annotations" section.
# This is quite noisy and not helpful.
- name: Run the local copy of this action (that is checked in to source control)
uses: ./
with:
Expand Down