Skip to content

Commit 4de3b04

Browse files
committed
Added build GitHub workflow
1 parent ddb74a1 commit 4de3b04

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: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Prerequisite
13+
run: sudo bash before_install.sh
14+
15+
- name: make
16+
run: make

0 commit comments

Comments
 (0)