From 8afcf4fb8d6fd4369eb6248ed953d61200ffd3e5 Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Wed, 11 Aug 2021 09:40:35 +0200 Subject: [PATCH] Add github CI action for macOS --- .github/workflows/macos.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..0b36233 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,21 @@ +name: macos + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: install check + run: brew install check + - name: run tests + run: make test