We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25edec6 commit 3ba3e28Copy full SHA for 3ba3e28
.github/workflows/build.yaml
@@ -1,26 +1,23 @@
1
name: Go Build and Test
2
3
on:
4
- pull_request_target:
5
- types: [opened,synchronize]
+ pull_request
6
7
jobs:
8
- build:
9
+ build-and-test:
+ name: Build and Test the Go code
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
13
-
+ - name: Checkout the code
+ uses: actions/checkout@v4
14
- name: Set up Go
15
uses: actions/setup-go@v4
16
with:
17
- go-version: '1.22.4'
18
+ go-version: '1.22.5'
19
- name: make verification
20
run: make verifiers
21
22
- name: Build
23
run: go build -v ./...
24
25
- name: Test
26
run: go test -v ./...
0 commit comments