From 5b3a30ba0cfa0374b7eadd2f0291ccd997198ea4 Mon Sep 17 00:00:00 2001 From: Dmitriy Tarasov Date: Tue, 12 Mar 2024 01:05:27 +0300 Subject: [PATCH] ci: update ci workflow --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff977f3..9fcf469 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,15 +2,16 @@ name: CI on: [push, pull_request] jobs: tests: - runs-on: ubuntu-latest strategy: fail-fast: false matrix: - ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, head, truffleruby, truffleruby-head, truffleruby+graalvm, truffleruby+graalvm-head] - name: Ruby ${{ matrix.ruby }} + os: [ubuntu-latest, macos-latest] + ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', head, truffleruby, truffleruby-head] + runs-on: ${{ matrix.os }} + name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: