diff options
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r-- | .github/workflows/macos.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 7378256..39a0f9c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -4,12 +4,15 @@ on: [push, pull_request] jobs: build: - # macOS 11 is broken due to https://apple.stackexchange.com/a/425730/397839 - runs-on: macOS-10.15 + 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 |