Skip to content

Commit 0b072b1

Browse files
committed
lint yml
1 parent 22d39cf commit 0b072b1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/run_tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,29 @@ on:
99
branches: ['*']
1010

1111
jobs:
12+
1213
build:
1314
runs-on: ubuntu-latest
15+
1416
steps:
1517
- uses: actions/checkout@v3
1618
with:
1719
submodules: true
18-
fetch-depth: 1
20+
fetch-depth: 0
21+
1922
- name: MOxUnit Action
2023
uses: joergbrech/[email protected]
2124
with:
2225
tests: tests
2326
src: src
2427
with_coverage: true
2528
cover_xml_file: coverage.xml
29+
2630
- name: Code coverage
2731
uses: codecov/codecov-action@v3
2832
with:
2933
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
3034
file: coverage.xml # optional
3135
flags: unittests # optional
3236
name: codecov-umbrella # optional
33-
fail_ci_if_error: true # optional (default = false)
37+
fail_ci_if_error: false # optional (default = false)

0 commit comments

Comments
 (0)