From 11207a9c98a8093b91f5b45b60da2944eda59fb3 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 30 Sep 2021 01:09:36 -0400 Subject: [PATCH] add GitHub workflow for building and running tests --- .github/workflows/build-and-test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/build-and-test.yml diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml new file mode 100644 index 0000000..2353aa1 --- /dev/null +++ b/.github/workflows/build-and-test.yml @@ -0,0 +1,12 @@ +name: Build and run tests + +on: [pull_request, push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: make test