Files
inferno-hart/.github/workflows/c-cpp.yml
Benjamin Kyd 7db567e086 Create c-cpp.yml
Not sure that this will work as shaders need to compile etc

Signed-off-by: Benjamin Kyd <benjaminkyd@gmail.com>
2023-12-19 16:19:02 +00:00

20 lines
307 B
YAML

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