Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Add workflow for code coverage
  • Loading branch information
haraldschellander authored Nov 25, 2024
1 parent 288a020 commit 2b00648
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
steps:
- uses: actions/checkout@main
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true # optional (default = false)
files: ./coverage1.xml,./coverage2.xml # optional
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true # optional (default = false)

0 comments on commit 2b00648

Please sign in to comment.