From eeaf59b439c6f763ffdb4c869b800968096858b5 Mon Sep 17 00:00:00 2001 From: John D Pell Date: Wed, 12 Jan 2022 21:33:34 -0800 Subject: [PATCH] CI: install `parallel` on OSX This should (hopefully) speed up tests! --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b629e41..0eee145c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,9 @@ jobs: - name: Install greadlink if: startsWith(runner.os, 'macOS') run: brew install coreutils + - name: Install parallel + if: startsWith(runner.os, 'macOS') + run: brew install parallel - name: Test code run: test/run