Create c-cpp.yml

Not sure that this will work as shaders need to compile etc

Signed-off-by: Benjamin Kyd <benjaminkyd@gmail.com>
This commit is contained in:
Benjamin Kyd
2023-12-19 16:19:02 +00:00
committed by GitHub
parent 9041a979a8
commit 7db567e086

19
.github/workflows/c-cpp.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: C/C++ CI
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: mkdir build && cd build && cmake ..
- name: make
run: cd build && make