From 90c1c24ccb6306d5a6eb7de220092d7b695ec061 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Mon, 2 Sep 2019 21:35:53 +0200 Subject: [PATCH] :construction_worker: try GitHub Actions --- .github/workflows/ccpp.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 000000000..9839bb272 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -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