Merge pull request #1108 from kahun/feature/add_linuxnodeconfig #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add public code coverage reports | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: "make test-cover" | ||
- uses: codecov/codecov-action@v2 | ||
with: | ||
file: ./coverage.out | ||
fail_ci_if_error: true |