From 18cc3716b482d817be5d162758c3026aace8e1bc Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Thu, 12 Dec 2019 19:30:55 +0200 Subject: [PATCH] Create ccpp.yml --- .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 0000000..e0fa5e7 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,17 @@ +name: C/C++ CI + +on: [push] + +jobs: + build-ubuntu: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: mkdir build && cd build && cmake .. + - name: make + run: cmake --build build + - name: test + run: cd test && ./run-spec-test.py