Skip to content

Commit

Permalink
Separating coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Jun 6, 2024
1 parent ebb17e2 commit f8c1e54
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: Ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Check
env:
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Check
run: |
Expand All @@ -53,21 +53,23 @@ jobs:
cd tests
make main.o
./main.o
coverage:
runs-on: ubuntu-latest
container: gvegayon/epiworld:latest

steps:
- uses: actions/checkout@v4

- name: Generate coverage
run: |
cd tests
make coverage
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
files: tests/gcov-files/* # optional
# flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)





verbose: true # optional (default = false)

0 comments on commit f8c1e54

Please sign in to comment.