- add CODECOV_TOKEN

- add missing make lcov-report
This commit is contained in:
Alon Faraj 2023-08-31 12:19:25 +03:00
parent a62df95d35
commit a589615fd3

View file

@ -25,9 +25,13 @@ jobs:
run: CC=gcc-8 make test
- name: Generate coverage report
run: make coverage
run: |
make coverage
make lcov-report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: lcov-report/coverage.info