Skip to content

Commit 06c5e6d

Browse files
authored
Fix codecov-action params (#183)
* `functionalities` param is no longer exist. It was used to enable file fixes to ignore common lines from coverage. This feature is now seems to be on by default. * Adding `disable_search` because we do not need for the codecov action to search for coverage files: we explicitly provide files. Signed-off-by: Mikalai Radchuk <[email protected]>
1 parent bf5fa88 commit 06c5e6d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ jobs:
1818
go-version-file: "go.mod"
1919
- run: make test
2020
- uses: codecov/codecov-action@v4
21-
env:
22-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2321
with:
22+
disable_search: true
2423
files: cover.out
25-
functionalities: fixes
24+
token: ${{ secrets.CODECOV_TOKEN }}
2625

2726
lint:
2827
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)