Skip to content

Commit ddcaff3

Browse files
committed
Add initial build action
1 parent bcd68ef commit ddcaff3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build project
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up environment
14+
run: sudo apt-get update && sudo apt-get install -y build-essential
15+
16+
- name: Run build script
17+
run: ./build.sh

0 commit comments

Comments
 (0)