diff options
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r-- | .github/workflows/macos.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..ab359e1 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,14 @@ +name: macOS + +on: [push, pull_request] + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run tests + run: | + make -j$(sysctl -n hw.ncpu) distcheck |