Skip to content

Commit 752f23b

Browse files
committed
Add build workflow
Signed-off-by: Šimon Brandner <[email protected]>
1 parent fa4df37 commit 752f23b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build
2+
3+
on:
4+
pull_request: {}
5+
push:
6+
branches: [main]
7+
jobs:
8+
build:
9+
name: Build
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Setup go
14+
uses: actions/setup-go@v3
15+
- name: Build
16+
run: "./scripts/build.sh"

0 commit comments

Comments
 (0)