diff options
author | Markus Wüstenberg | 2024-10-30 15:38:15 +0100 |
---|---|---|
committer | GitHub | 2024-10-30 14:38:15 +0000 |
commit | d4a299fe07de5c7b4e6f1657f9474043d6074d8a (patch) | |
tree | e4fb65f43757f2a5f48263e76b433bb49c698b4b | |
parent | 900ef87aac4f4c6c0be49faeb1fc7c190c17a482 (diff) | |
download | gomponents-d4a299fe07de5c7b4e6f1657f9474043d6074d8a.tar.lz gomponents-d4a299fe07de5c7b4e6f1657f9474043d6074d8a.tar.zst gomponents-d4a299fe07de5c7b4e6f1657f9474043d6074d8a.zip |
Upgrade codecov Github action in CI workflow (#231)
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | codecov.yml | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35861c9..8efae34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,9 @@ jobs: run: go test -v -coverprofile=coverage.txt -shuffle on ./... - name: Coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} lint: name: Lint diff --git a/codecov.yml b/codecov.yml index db6d53e..cdf409b 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,3 +1,2 @@ ignore: - - "examples" - - "internal/assert" + - "internal/" |