From 241b3975e1c2e72805294bd67b4f6ba61b48a3bb Mon Sep 17 00:00:00 2001 From: overflowerror Date: Thu, 29 Apr 2021 23:03:12 +0200 Subject: [PATCH] added github workflow for tests --- .github/workflows/c-cpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..fab0d6b --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make test + run: make test + - name: run tests + run: ./test