Skip to content

Commit

Permalink
Merge pull request onflow#5770 from onflow/petera/add-codecov-timeout
Browse files Browse the repository at this point in the history
[CI] Add timeout to codecov
  • Loading branch information
peterargue authored Apr 24, 2024
2 parents 576ed8b + 6223be9 commit 48500c0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,14 @@ jobs:
#env:
# RACE_DETECTOR: 1
- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
timeout-minutes: 1
continue-on-error: true
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}

unit-test-insecure:
name: Unit Tests Insecure (${{ matrix.targets.name }})
Expand Down Expand Up @@ -193,11 +196,14 @@ jobs:
#env:
# RACE_DETECTOR: 1
- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
timeout-minutes: 1
continue-on-error: true
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}

docker-build:
name: Docker Build
Expand Down Expand Up @@ -270,11 +276,14 @@ jobs:
#env:
# RACE_DETECTOR: 1
- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
timeout-minutes: 1
continue-on-error: true
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}

integration-test:
name: Integration Tests
Expand Down

0 comments on commit 48500c0

Please sign in to comment.