File tree 6 files changed +27
-22
lines changed
6 files changed +27
-22
lines changed Original file line number Diff line number Diff line change 18
18
- uses : actions/setup-go@v5
19
19
with :
20
20
go-version-file : ./go.mod
21
- - run : ./ci/ fmt.sh
21
+ - run : make fmt
22
22
23
23
lint :
24
24
runs-on : ubuntu-latest
28
28
- uses : actions/setup-go@v5
29
29
with :
30
30
go-version-file : ./go.mod
31
- - run : ./ci/ lint.sh
31
+ - run : make lint
32
32
33
33
test :
34
34
runs-on : ubuntu-latest
43
43
- uses : actions/setup-go@v5
44
44
with :
45
45
go-version-file : ./go.mod
46
- - run : ./ci/ test.sh
46
+ - run : make test
47
47
- uses : actions/upload-artifact@v4
48
48
with :
49
49
name : coverage.html
56
56
- uses : actions/setup-go@v5
57
57
with :
58
58
go-version-file : ./go.mod
59
- - run : ./ci/ bench.sh
59
+ - run : make bench
Original file line number Diff line number Diff line change 15
15
- uses : actions/setup-go@v5
16
16
with :
17
17
go-version-file : ./go.mod
18
- - run : AUTOBAHN=1 ./ci/ bench.sh
18
+ - run : AUTOBAHN=1 make bench
19
19
test :
20
20
runs-on : ubuntu-latest
21
21
steps :
29
29
- uses : actions/setup-go@v5
30
30
with :
31
31
go-version-file : ./go.mod
32
- - run : AUTOBAHN=1 ./ci/ test.sh
32
+ - run : AUTOBAHN=1 make test
33
33
- uses : actions/upload-artifact@v4
34
34
with :
35
35
name : coverage.html
43
43
- uses : actions/setup-go@v5
44
44
with :
45
45
go-version-file : ./go.mod
46
- - run : AUTOBAHN=1 ./ci/ bench.sh
46
+ - run : AUTOBAHN=1 make bench
47
47
test-dev :
48
48
runs-on : ubuntu-latest
49
49
steps :
59
59
- uses : actions/setup-go@v5
60
60
with :
61
61
go-version-file : ./go.mod
62
- - run : AUTOBAHN=1 ./ci/ test.sh
62
+ - run : AUTOBAHN=1 make test
63
63
- uses : actions/upload-artifact@v4
64
64
with :
65
65
name : coverage-dev.html
Original file line number Diff line number Diff line change 38
38
go-version-file : ./go.mod
39
39
- name : Generate coverage and badge
40
40
run : |
41
- ./ci/ test.sh
41
+ make test
42
42
mkdir -p ./ci/out/static
43
43
cp ./ci/out/coverage.html ./ci/out/static/coverage.html
44
44
percent=$(go tool cover -func ./ci/out/coverage.prof | tail -n1 | awk '{print $3}' | tr -d '%')
Original file line number Diff line number Diff line change
1
+ .PHONY : all
2
+ all : fmt lint test
3
+
4
+ .PHONY : fmt
5
+ fmt :
6
+ ./ci/fmt.sh
7
+
8
+ .PHONY : lint
9
+ lint :
10
+ ./ci/lint.sh
11
+
12
+ .PHONY : test
13
+ test :
14
+ ./ci/test.sh
15
+
16
+ .PHONY : bench
17
+ bench :
18
+ ./ci/bench.sh
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- set -x
3
2
set -eu
4
3
cd -- " $( dirname " $0 " ) /.."
5
4
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments