We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9e884 commit 1c90dffCopy full SHA for 1c90dff
1 file changed
.github/workflows/build.yaml
@@ -0,0 +1,32 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - 'docs/**'
7
+ - '.github/**'
8
+ - '*.sh'
9
+ pull_request:
10
11
12
13
14
+ workflow_dispatch:
15
16
+jobs:
17
+ build:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v5
22
+ with:
23
+ fetch-depth: 0
24
25
+ - name: Setup Go
26
+ uses: actions/setup-go@v6
27
28
+ go-version: 1.24
29
30
+ - name: Build
31
+ run: |
32
+ bin/build.sh
0 commit comments