Skip to content

Commit 3ba3e28

Browse files
authored
fix: CI workflow and update go version (#49)
1 parent 25edec6 commit 3ba3e28

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/build.yaml

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
name: Go Build and Test
22

33
on:
4-
pull_request_target:
5-
types: [opened,synchronize]
4+
pull_request
65

76
jobs:
8-
build:
97

8+
build-and-test:
9+
name: Build and Test the Go code
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
12+
- name: Checkout the code
13+
uses: actions/checkout@v4
1414
- name: Set up Go
1515
uses: actions/setup-go@v4
1616
with:
17-
go-version: '1.22.4'
18-
17+
go-version: '1.22.5'
1918
- name: make verification
2019
run: make verifiers
21-
2220
- name: Build
2321
run: go build -v ./...
24-
2522
- name: Test
2623
run: go test -v ./...

0 commit comments

Comments
 (0)