From a450ab2d9cb21d8d8d0913ceb3db8f3e41381168 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Tue, 27 Aug 2019 20:00:01 +0300 Subject: [PATCH] Update ccpp.yml --- .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..ff024ff --- /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: dependencies + run: sh ./build-deps.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck