From 6b4527468640e53e8aa1527d6095874cacad39f2 Mon Sep 17 00:00:00 2001 From: githubuser0xFFFF Date: Fri, 29 Nov 2019 22:29:49 +0100 Subject: [PATCH] Create actions_test.yml --- .github/workflows/actions_test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/actions_test.yml diff --git a/.github/workflows/actions_test.yml b/.github/workflows/actions_test.yml new file mode 100644 index 0000000..1247fb0 --- /dev/null +++ b/.github/workflows/actions_test.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck