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.
1 parent 1f15d76 commit a67dda3Copy full SHA for a67dda3
.github/workflows/test-go.yml
@@ -22,18 +22,7 @@ jobs:
22
run: |
23
make test
24
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
+ mv cover.out cover.out.tmp && grep -vP "volume-operator/(api/v1alpha1|cmd|test/utils)/" cover.out.tmp > cover.out
26
diffs="$(git status -s)"
27
if [[ -n "$diffs" ]]; then echo "there are diffs after make test: $diffs"; exit 250; fi
28
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