👷 try GitHub Actions

pull/1744/head
Niels Lohmann 2019-09-02 21:35:53 +02:00 committed by GitHub
parent bf4156056b
commit 90c1c24ccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/ccpp.yml vendored 100644
View 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