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

Bump codecov/codecov-action from 4 to 5 #89

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test-with-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: ci-build
on:

Check warning on line 2 in .github/workflows/test-with-coverage.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

2:1 [truthy] truthy value should be one of [false, true]
push:
branches:
- master
tags-ignore:
- '*.*'
pull_request_target:
types: [ opened, synchronize, reopened, ready_for_review ]

Check warning on line 9 in .github/workflows/test-with-coverage.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

9:13 [brackets] too many spaces inside brackets

Check warning on line 9 in .github/workflows/test-with-coverage.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

9:61 [brackets] too many spaces inside brackets
branches:
- master

Expand All @@ -15,7 +15,7 @@
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]

Check warning on line 18 in .github/workflows/test-with-coverage.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

18:14 [brackets] too many spaces inside brackets

Check warning on line 18 in .github/workflows/test-with-coverage.yml

View workflow job for this annotation

GitHub Actions / YAML Lint

18:28 [brackets] too many spaces inside brackets
name: Test with coverage

steps:
Expand Down Expand Up @@ -47,7 +47,7 @@
run: |
make test-with-coverage
- name: Upload code coverage
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./out/coverage/coverage.txt
Expand Down
Loading