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