Skip to content

Commit

Permalink
Upgrade GHA (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Mar 26, 2024
1 parent 6569e74 commit ad5d88a
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:

- name: Upload coverage data
if: ${{ startsWith(matrix.passed_name, 'py') }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
name: ${{ matrix.passed_name }}
fail_ci_if_error: false # see https://github.com/codecov/codecov-action/issues/598
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)
fail_ci_if_error: true

- name: Archive logs
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -125,6 +125,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Merge logs into a single archive
uses: actions/upload-artifact/merge@v4
with:
name: logs.zip
pattern: logs*.zip
delete-merged: true

- name: Check codecov.io status
if: github.event_name == 'pull_request'
uses: coactions/codecov-status@main

- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
Expand Down

0 comments on commit ad5d88a

Please sign in to comment.