From f91c1b2c2fbd1d44e83d7e6f58698db4a8c98fc9 Mon Sep 17 00:00:00 2001 From: Benoit A <454267+benoit-a@users.noreply.github.com> Date: Fri, 8 Nov 2019 19:43:08 +0100 Subject: [PATCH] create first revision (cherry picked from commit b8c3293446db482e177ffe265ebb91e88c9b1dd6) --- .github/workflows/ccpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..677b212 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,21 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: autogen + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make test + run: make test