summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml7
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