👷 try GitHub Actions

This commit is contained in:
Niels Lohmann
2019-09-02 21:35:53 +02:00
committed by GitHub
parent bf4156056b
commit 90c1c24ccb

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