SDLU/.github/workflows/ccpp.yml
2020-05-18 21:51:25 +02:00

26 lines
406 B
YAML

name: C/C++ CI
on:
push:
branches: [ development ]
pull_request:
branches: [ development ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: submodule
uses: srt32/git-actions@v0.0.3
with:
args: git submodule update --init
- name: configure
run:
cd build
cmake ..
- name: make
run: make