Skip to content

Commit 4e416a7

Browse files
committed
add git actions
Signed-off-by: Rafael Aragao Morais <ram.morais50@gmail.com>
1 parent a578283 commit 4e416a7

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Engine
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Install dependencies
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y ninja-build
17+
./setup.sh
18+
- name: Build
19+
run: ./build.sh

0 commit comments

Comments
 (0)