File tree 1 file changed +23
-11
lines changed
1 file changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -16,27 +16,39 @@ concurrency:
16
16
cancel-in-progress : true
17
17
18
18
jobs :
19
+ coverage :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - uses : actions/setup-go@v5
24
+ with :
25
+ go-version-file : ./go.mod
26
+ - run : |
27
+ ./ci/test.sh
28
+ echo "PERCENT=$(go tool cover -func ./ci/out/coverage.prof | tail -n1 | awk '{print $3}' | tr -d '%')" >> "$GITHUB_OUTPUT"
29
+ {
30
+ echo "HTML<<EOF"
31
+ cat ./ci/out/coverage.html
32
+ echo EOF
33
+ } >> "$GITHUB_OUTPUT"
34
+
19
35
deploy :
20
36
environment :
21
37
name : github-pages
22
38
url : ${{ steps.deployment.outputs.page_url }}
23
39
runs-on : ubuntu-latest
40
+ needs : coverage
24
41
steps :
25
- - name : Checkout
26
- uses : actions/checkout@v4
27
42
- name : Setup Pages
28
43
uses : actions/configure-pages@v5
29
- - name : Setup Go
30
- uses : actions/setup-go@v5
31
- with :
32
- go-version-file : ./go.mod
33
- - name : Generate coverage and badge
44
+ - name : Write coverage.html and coverage.svg
45
+ env :
46
+ PERCENT : ${{ steps.coverage.outputs.PERCENT }}
47
+ HTML : ${{ steps.coverage.outputs.HTML }}
34
48
run : |
35
- ./ci/test.sh
36
49
mkdir -p ./ci/out/static
37
- cp ./ci/out/coverage.html ./ci/out/static/coverage.html
38
- percent=$(go tool cover -func ./ci/out/coverage.prof | tail -n1 | awk '{print $3}' | tr -d '%')
39
- wget -O ./ci/out/static/coverage.svg "https://img.shields.io/badge/coverage-${percent}%25-success"
50
+ wget -O ./ci/out/static/coverage.svg "https://img.shields.io/badge/coverage-${PERCENT}%25-success"
51
+ echo "$HTML" > ./ci/out/static/coverage.html
40
52
- name : Upload artifact
41
53
uses : actions/upload-pages-artifact@v3
42
54
with :
You can’t perform that action at this time.
0 commit comments