From 477e6cc39c715af2a6bfe51a828ac0d46314906c Mon Sep 17 00:00:00 2001 From: Luke Gruber Date: Wed, 11 Dec 2024 16:38:02 -0500 Subject: [PATCH] Add github actions file --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..99ad01a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: + pull_request: + push: + branches: [ master ] + + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + + steps: + - name: run tests + run: make test