From 5802f16c1ec63a7509148d29e3d047aa531f9a27 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 | 16 ++++++++++++++++ 1 file changed, 16 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..c440f46 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI + +on: + pull_request: + push: + branches: [ master ] + +strategy: + matrix: + os: [ubuntu-latest, macos-latest] + +jobs: + test: + steps: + - name: run tests + run: make test