@@ -29,20 +29,11 @@ jobs:
29
29
30
30
- id : get-repo
31
31
run : echo "repo=${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name || '' }}" >> $GITHUB_OUTPUT
32
-
33
- # This is safe because the reusable workflow does not require secrets and this
34
- # call is not setting secret inheritance (i.e. "secrets: inherit")
35
- call-unit-tests :
36
- uses : ./.github/workflows/tests.yaml
37
- needs : [set-project]
38
- with :
39
- ref : ${{ needs.set-project.outputs.ref }}
40
- repository : ${{ needs.set-project.outputs.repo }}
41
32
42
33
tics-static-code-analysis :
43
34
runs-on : ubuntu-24.04
44
35
name : TiCS Static Code Analysis
45
- needs : [set-project, call-unit-tests ]
36
+ needs : [set-project]
46
37
permissions :
47
38
pull-requests : write
48
39
env :
@@ -74,34 +65,24 @@ jobs:
74
65
echo "." > ${TICS_FILELIST}
75
66
fi
76
67
77
- - uses : actions/setup-go@v3
68
+ - uses : actions/setup-go@v4
78
69
with :
79
70
go-version-file : ' go.mod'
80
-
81
- - uses : actions/download-artifact@v4
82
-
83
- # This is safe because actions do not have access to secrets unless these
84
- # are passed via inputs or environment variables.
85
- # Ref: https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#accessing-your-secrets
86
- - uses : ./.github/actions/build-chisel/
87
- name : Build Chisel (TiCS analysis precondition)
88
- env :
89
- CGO_ENABLED : " 0"
90
71
91
- # Get the coverage file produced by the unit tests workflow and get it
92
- # ready for TiCS.
93
- - name : Prepare cobertura XML results
94
- env :
95
- TICS_COVERAGE_FOLDER : " .coverage"
72
+ - name : Install dependencies
96
73
run : |
97
- set -x
98
- mkdir -p ${TICS_COVERAGE_FOLDER}
99
- go install github.com/boumenot/gocover-cobertura@latest
100
- gocover-cobertura \
101
- < ${{ needs.call-unit-tests.outputs.test-coverage-artifact }}/${{ needs.call-unit-tests.outputs.test-coverage-file }} \
102
- > ${TICS_COVERAGE_FOLDER}/coverage.xml
74
+ go install honnef.co/go/tools/cmd/[email protected]
75
+ go install github.com/axw/gocov/[email protected]
76
+ go install github.com/AlekSi/[email protected]
103
77
104
- - run : go install honnef.co/go/tools/cmd/staticcheck@latest
78
+ # We could store a report from the "tests" run, but this is cheap to do and keeps this isolated.
79
+ - name : Test and generate coverage report
80
+ run : |
81
+ go test -coverprofile=coverage.out ./...
82
+ gocov convert coverage.out > coverage.json
83
+ # The coverage.xml file needs to be in a .coverage folder.
84
+ mkdir .coverage
85
+ gocov-xml < coverage.json > .coverage/coverage.xml
105
86
106
87
- name : Run TiCS client analysis
107
88
uses : tiobe/tics-github-action@v3
0 commit comments