From b0fe963040150d613ad359b1484d4dfcf56cd1b5 Mon Sep 17 00:00:00 2001 From: Thomas Hurst Date: Sun, 17 Sep 2023 19:03:26 +0000 Subject: [PATCH] CI: Add macos-latest --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4164809..2ba7510 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,11 +2,12 @@ name: CI on: [push, pull_request] jobs: test: - runs-on: ubuntu-latest strategy: fail-fast: false matrix: + os: [ubuntu-latest, macos-latest] ruby: ['2.7', '3.0', '3.1', '3.2', head, jruby, jruby-head, truffleruby, truffleruby-head] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1