Bump codecov/codecov-action from 3 to 4 #276
Workflow file for this run
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
name: tests and coverage | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: ['*'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: MOxUnit Action | |
uses: joergbrech/moxunit-action@v1.3.0 | |
with: | |
tests: tests | |
src: subfun | |
# add CPP_PTB to the path but don't include it the coverage | |
ext: lib/CPP_PTB/src | |
# Octave packages needed | |
pkg: statistics | |
with_coverage: true | |
cover_xml_file: coverage.xml | |
- name: Code coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
file: coverage.xml # optional | |
flags: unittests # optional | |
name: codecov-umbrella # optional | |
fail_ci_if_error: true # optional (default = false) |