We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 609ec10 + 420071a commit eceade1Copy full SHA for eceade1
1 file changed
.github/workflows/go.yml
@@ -0,0 +1,22 @@
1
+# This workflow will build a golang project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3
+
4
+name: Go
5
6
+on:
7
+ pull_request:
8
+ branches: [ "master" ]
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Set up Go
17
+ uses: actions/setup-go@v4
18
+ with:
19
+ go-version: '1.24'
20
21
+ - name: Build
22
+ run: go build -v ./...
0 commit comments