Skip to content

Commit 1c90dff

Browse files
committed
Build CI
1 parent bb9e884 commit 1c90dff

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/build.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths-ignore:
11+
- 'docs/**'
12+
- '.github/**'
13+
- '*.sh'
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+
with:
28+
go-version: 1.24
29+
30+
- name: Build
31+
run: |
32+
bin/build.sh

0 commit comments

Comments
 (0)