6
6
pull_request :
7
7
8
8
env :
9
- GO_VERSION : 1.18
9
+ GO_VERSION : 1.19.0-rc.2
10
10
11
11
jobs :
12
12
# Check if there any dirty change for go mod tidy
16
16
- name : Install Go
17
17
uses : actions/setup-go@v3
18
18
with :
19
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
19
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
20
20
go-version : ${{ env.GO_VERSION }}
21
21
- name : Checkout code
22
22
uses : actions/checkout@v3
34
34
- name : Install Go
35
35
uses : actions/setup-go@v3
36
36
with :
37
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
37
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
38
38
go-version : ${{ env.GO_VERSION }}
39
39
- name : lint
40
40
52
52
- name : Install Go
53
53
uses : actions/setup-go@v3
54
54
with :
55
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
55
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
56
56
go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
57
57
- name : Run tests
58
58
run : make.exe test
66
66
- name : Install Go
67
67
uses : actions/setup-go@v3
68
68
with :
69
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
69
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
70
70
go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
71
71
- name : Run tests
72
72
run : make test
@@ -77,14 +77,14 @@ jobs:
77
77
strategy :
78
78
matrix :
79
79
golang :
80
- - 1.17
81
80
- 1.18
81
+ - 1.19.0-rc.2
82
82
steps :
83
83
- uses : actions/checkout@v3
84
84
- name : Install Go
85
85
uses : actions/setup-go@v3
86
86
with :
87
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
87
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
88
88
go-version : ${{ matrix.golang }}
89
89
- uses : actions/cache@v3
90
90
with :
@@ -108,7 +108,7 @@ jobs:
108
108
- name : Install Go
109
109
uses : actions/setup-go@v3
110
110
with :
111
- # stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
111
+ stable : ' false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
112
112
go-version : ${{ env.GO_VERSION }}
113
113
- name : Check generated files are up to date
114
114
run : make fast_check_generated
0 commit comments