👷 try GitHub Actions
This commit is contained in:
parent
bf4156056b
commit
90c1c24ccb
1 changed files with 17 additions and 0 deletions
17
.github/workflows/ccpp.yml
vendored
Normal file
17
.github/workflows/ccpp.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: C/C++ CI
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: prepare
|
||||||
|
run: mkdir build
|
||||||
|
- name: cmake
|
||||||
|
run: cd build ; cmake ..
|
||||||
|
- name: make
|
||||||
|
run: make -C build
|
Loading…
Reference in a new issue