From 6531aaa7bc845191cd97a691596b91ffa48fffb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 19 Sep 2019 10:56:11 +0200 Subject: [PATCH] Try using github actions Let's see how badly this goes --- .github/workflows/ccpp.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..af59213e --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,20 @@ +name: Smoke test + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: | + mkdir build && cd build && cmake .. + - name: build + run: | + make -j4 + - name: test + run: | + ctest -V