We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9da0729 + fb94e80 commit dc6d344Copy full SHA for dc6d344
.github/workflows/moxunit.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches: '*'
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ with:
16
+ submodules: true
17
+ fetch-depth: 1
18
+ - name: MOxUnit Action
19
+ uses: joergbrech/[email protected]
20
21
+ tests: tests
22
+ src: src
23
+ with_coverage: true
24
+ cover_xml_file: coverage.xml
25
+ - name: Code coverage
26
+ uses: codecov/codecov-action@v1
27
28
+ token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
29
+ file: coverage.xml # optional
30
+ flags: unittests # optional
31
+ name: codecov-umbrella # optional
32
+ fail_ci_if_error: true # optional (default = false)
0 commit comments