Skip to content

Commit 2d4dff2

Browse files
authored
Add GitHub Action Workflow Building the Project (#41)
1 parent 1cf765e commit 2d4dff2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build Project
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- '*'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
- name: Install Build Dependencies
18+
run: sudo apt-get update && sudo apt-get install -y build-essential libx11-dev libxrandr-dev
19+
- name: Build Project
20+
run: make

0 commit comments

Comments
 (0)