Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm authored Jun 25, 2024
1 parent 7fbdf86 commit 62ba5de
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: make build

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y libglfw3 libglew-dev libstb-dev libglm-dev
- name: make
run: make

0 comments on commit 62ba5de

Please sign in to comment.