66 pull_request :
77
88env :
9- GO_VERSION : 1.18
9+ GO_VERSION : 1.19.0-rc.2
1010
1111jobs :
1212 # Check if there any dirty change for go mod tidy
1616 - name : Install Go
1717 uses : actions/setup-go@v3
1818 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-rc.1 ).
2020 go-version : ${{ env.GO_VERSION }}
2121 - name : Checkout code
2222 uses : actions/checkout@v3
3434 - name : Install Go
3535 uses : actions/setup-go@v3
3636 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-rc.1 ).
3838 go-version : ${{ env.GO_VERSION }}
3939 - name : lint
4040 uses : golangci/golangci-lint-action@v3.2.0
5252 - name : Install Go
5353 uses : actions/setup-go@v3
5454 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-rc.1 ).
5656 go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
5757 - name : Run tests
5858 run : make.exe test
6666 - name : Install Go
6767 uses : actions/setup-go@v3
6868 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-rc.1 ).
7070 go-version : ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
7171 - name : Run tests
7272 run : make test
@@ -77,14 +77,14 @@ jobs:
7777 strategy :
7878 matrix :
7979 golang :
80- - 1.17
8180 - 1.18
81+ - 1.19.0-rc.2
8282 steps :
8383 - uses : actions/checkout@v3
8484 - name : Install Go
8585 uses : actions/setup-go@v3
8686 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-rc.1 ).
8888 go-version : ${{ matrix.golang }}
8989 - uses : actions/cache@v3
9090 with :
@@ -108,7 +108,7 @@ jobs:
108108 - name : Install Go
109109 uses : actions/setup-go@v3
110110 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-rc.1 ).
112112 go-version : ${{ env.GO_VERSION }}
113113 - name : Check generated files are up to date
114114 run : make fast_check_generated
0 commit comments