|
@@ -28,8 +28,7 @@ jobs:
|
|
|
- name: Setup Go
|
|
|
uses: actions/setup-go@v5
|
|
|
with:
|
|
|
- go-version: ^1.22
|
|
|
- continue-on-error: true
|
|
|
+ go-version: ^1.23
|
|
|
- name: Run Test
|
|
|
run: |
|
|
|
go test -v ./...
|
|
@@ -93,6 +92,26 @@ jobs:
|
|
|
key: go121-${{ hashFiles('**/go.sum') }}
|
|
|
- name: Run Test
|
|
|
run: make ci_build
|
|
|
+ build_go122:
|
|
|
+ name: Debug build (Go 1.22)
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ steps:
|
|
|
+ - name: Checkout
|
|
|
+ uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
|
+ with:
|
|
|
+ fetch-depth: 0
|
|
|
+ - name: Setup Go
|
|
|
+ uses: actions/setup-go@v5
|
|
|
+ with:
|
|
|
+ go-version: ~1.22
|
|
|
+ - name: Cache go module
|
|
|
+ uses: actions/cache@v4
|
|
|
+ with:
|
|
|
+ path: |
|
|
|
+ ~/go/pkg/mod
|
|
|
+ key: go122-${{ hashFiles('**/go.sum') }}
|
|
|
+ - name: Run Test
|
|
|
+ run: make ci_build
|
|
|
cross:
|
|
|
strategy:
|
|
|
matrix:
|