Skip to content

Commit d4da4a9

Browse files
committedNov 24, 2024·
update go-version 1.23
1 parent 1eeb140 commit d4da4a9

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed
 

‎.github/workflows/go.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,23 @@ name: Go
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: ["main"]
99
pull_request:
10-
branches: [ "main" ]
10+
branches: ["main"]
1111

1212
jobs:
13-
1413
build:
1514
runs-on: ubuntu-latest
1615
steps:
17-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v4
1817

19-
- name: Set up Go
20-
uses: actions/setup-go@v4
21-
with:
22-
go-version: '1.20'
18+
- name: Set up Go
19+
uses: actions/setup-go@v4
20+
with:
21+
go-version: "1.23"
2322

24-
- name: Build
25-
run: go build -v ./...
23+
- name: Build
24+
run: go build -v ./...
2625

27-
- name: Test
28-
run: go test -v ./...
26+
- name: Test
27+
run: go test -v ./...

0 commit comments

Comments
 (0)
Please sign in to comment.