Skip to content

Commit a67dda3

Browse files
fix: remove coverage report from workflow
1 parent 1f15d76 commit a67dda3

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/test-go.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,7 @@ jobs:
2222
run: |
2323
make test
2424
echo "removing generated code from coverage results"
25-
mv cover.out cover.out.tmp && grep -vP "ogcapi-operator/(api/v1alpha1|cmd|test/utils)/" cover.out.tmp > cover.out
25+
mv cover.out cover.out.tmp && grep -vP "volume-operator/(api/v1alpha1|cmd|test/utils)/" cover.out.tmp > cover.out
2626
diffs="$(git status -s)"
2727
if [[ -n "$diffs" ]]; then echo "there are diffs after make test: $diffs"; exit 250; fi
2828
29-
- name: Update coverage report
30-
uses: ncruces/go-coverage-report@v0
31-
with:
32-
coverage-file: cover.out
33-
report: true
34-
chart: false
35-
amend: false
36-
reuse-go: true
37-
if: |
38-
github.event_name == 'push'
39-
continue-on-error: false

0 commit comments

Comments
 (0)