summaryrefslogtreecommitdiffstats
path: root/.github/workflows/macos.yml
blob: 39a0f9cbf69cf96eeec5b0ae03da413761aa025f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: macOS

on: [push, pull_request]

jobs:
  build:
    runs-on: macos-latest

    steps:
      - uses: actions/checkout@v2

      - name: Install dependencies
        run: |
          brew install coreutils

      - name: Run tests
        run: |
          make -j$(sysctl -n hw.ncpu) distcheck