Skip to content

Commit ebe77c9

Browse files
committed
ci: build
1 parent 78343c2 commit ebe77c9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-20.04
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v3
12+
13+
- name: Build binary
14+
run: |
15+
make build
16+
17+
- uses: actions/upload-artifact@v3
18+
with:
19+
name: sandbox
20+
path: sandbox

0 commit comments

Comments
 (0)