From: James Alan Preiss Date: Mon, 1 Jun 2020 21:48:34 +0000 (-0700) Subject: add github action for CI testing X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=5106d17993a5233894ff5709b1ed3c378aa2b6c6;p=forks%2Fcmath3d.git add github action for CI testing --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..43e580d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,13 @@ +name: test + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: test + run: make test