Skip to content

Commit 62ba5de

Browse files
authored
Create build.yml
1 parent 7fbdf86 commit 62ba5de

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: make build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: install dependencies
20+
run: |
21+
sudo apt-get update -y
22+
sudo apt-get install -y libglfw3 libglew-dev libstb-dev libglm-dev
23+
24+
- name: make
25+
run: make

0 commit comments

Comments
 (0)