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:
19
.github/workflows/c-cpp.yml
vendored
Normal file
19
.github/workflows/c-cpp.yml
vendored
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user