From 3899ecb3d1ab9feaf3e87f40733edd72abb6165e Mon Sep 17 00:00:00 2001 From: John Houston Date: Wed, 17 Mar 2021 22:47:18 -0400 Subject: [PATCH] Add GitHub action to run tests --- .github/workflows/test.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..c335e9b --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,16 @@ +name: "tests" +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + unit_test: + runs-on: ubuntu-latest + steps: + - name: Unit tests + run: | + make test