We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6d824 commit ebcb805Copy full SHA for ebcb805
1 file changed
.github/workflows/go.yml
@@ -1,3 +1,4 @@
1
+---
2
# This workflow will build a golang project
3
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
4
@@ -14,15 +15,15 @@ jobs:
14
15
build:
16
runs-on: ubuntu-latest
17
steps:
- - uses: actions/checkout@v3
18
+ - uses: actions/checkout@v4
19
- - name: Set up Go
20
- uses: actions/setup-go@v3
21
- with:
22
- go-version: 1.22
+ - name: Set up Go
+ uses: actions/setup-go@v5
+ with:
23
+ go-version: '1.25'
24
- - name: Build
25
- run: go build -v ./...
+ - name: Build
26
+ run: go build -v ./...
27
- - name: Test
28
- run: go test -v ./...
+ - name: Test
29
+ run: go test -v ./...
0 commit comments