Update makefile.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up CMake | |
run: sudo apt-get install -y cmake ninja-build | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install -y glslc libglfw3-dev libglm-dev | |
- name: Build Project | |
run: | | |
mkdir -p build | |
cd build | |
cmake -G Ninja .. | |
ninja | |
- name: Run Executable | |
run: | | |
cd build | |
./NeonEngine |