-
-
Notifications
You must be signed in to change notification settings - Fork 9
43 lines (35 loc) · 1.03 KB
/
codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: CodeCov
on:
workflow_call:
jobs:
codecov:
name: ${{ matrix.package }}
strategy:
matrix:
package:
- config
- foxify
- fresh
- http
- inject
- router
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
continue-on-error: true
with:
name: coverage
path: coverage
- name: "Check file existence"
id: check_coverage_files
uses: andstor/file-existence-action@v2
with:
files: coverage/${{ matrix.package }}
- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v3
if: steps.check_coverage_files.outputs.files_exists == 'true'
with:
files: coverage/${{ matrix.package }}/coverage/clover.xml,coverage/${{ matrix.package }}/coverage/coverage-final.json,coverage/${{ matrix.package }}/coverage/lcov.info
flags: ${{ matrix.package }}
fail_ci_if_error: true