From c87a0963b427ff4a45cf4b0803ad6ca6818d2785 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Fri, 16 Aug 2019 12:48:07 -0700 Subject: [PATCH] Also test on MacOS --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e68308..049dc11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,11 +12,12 @@ jobs: build: strategy: matrix: + os: [ubuntu-latest, macOS-latest] node-version: [8.x, 10.x, 12.x] ruby-version: [2.4.x, 2.5.x, 2.6.x] - runs-on: ubuntu-latest - name: Test Ruby ${{ matrix.ruby-version }} and Node.js ${{ matrix.node-version }} + runs-on: ${{ matrix.os }} + name: Test Ruby ${{ matrix.ruby-version }} and Node.js ${{ matrix.node-version }} on ${{ matrix.os }} steps: - uses: actions/checkout@v1