From bf6587209fa762d1b94c89fe39218dc782d9d90a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 20 Apr 2020 15:49:19 +0200 Subject: [PATCH] Add Github Action for macOS --- .github/workflows/macos.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..613e1b5 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,24 @@ +name: macOS + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + os: + - macos-10.15 + runs-on: ${{ matrix.os }} + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - name: Build + run: | + ./configure + make + + - name: Test + run: | + ./testsuite.sh