Skip to content

Commit

Permalink
ci: Some minor CI updates, allowed the codecov step to fail and also …
Browse files Browse the repository at this point in the history
…only run on success
  • Loading branch information
lethalbit committed May 14, 2024
1 parent 3d3728a commit 927daac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
nox -s docs
- name: 'Deploy'
if: success() && github.repository == 'squishy-scsi/squishy'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
- name: 'Codecov'
if: success() && github.repository == 'squishy-scsi/squishy'
uses: codecov/codecov-action@v4
continue-on-error: true # It's not super mission critical that the coverage upload fails
with:
verbose: true
files: ./build/tests/coverage.xml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
- name: 'Codecov Upload'
uses: codecov/codecov-action@v4
if: success() && github.repository == 'squishy-scsi/squishy'
continue-on-error: true # It's not super mission critical that the coverage upload fails
with:
verbose: true
files: ./build/tests/coverage.xml
Expand Down

0 comments on commit 927daac

Please sign in to comment.