Skip to content

Commit bdc30b9

Browse files
committed
Make coverage reporting allow to fail in CI
1 parent 0aae6ca commit bdc30b9

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/pull-request.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
- name: Archive code coverage results
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: code-coverage
39-
path: coverage.txt
38+
name: "code-coverage"
39+
path: "coverage.txt"
4040

4141
lint:
4242
name: "Code Linting"
@@ -68,7 +68,8 @@ jobs:
6868
runs-on: ubuntu-latest
6969
needs: test
7070
steps:
71-
- uses: fgrosse/go-coverage-report@v1.0.2
71+
- uses: fgrosse/go-coverage-report@v1.1.1
72+
continue-on-error: true
7273
with:
7374
coverage-artifact-name: "code-coverage"
7475
coverage-file-name: "coverage.txt"

0 commit comments

Comments
 (0)