Skip to content

Commit

Permalink
fix broken build on macos-latest (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 authored Jun 30, 2024
1 parent d4b99a1 commit 8e2d28e
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/test-darwin-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,27 @@ on:
jobs:
test:
name: Test
runs-on: macOS-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "2.5"
- "2.4"
include:
- os: macos-latest
ruby: "3.3"
- os: macos-latest
ruby: "3.2"
- os: macos-latest
ruby: "3.1"
- os: macos-latest
ruby: "3.0"
- os: macos-latest
ruby: "2.7"
- os: macos-latest
ruby: "2.6"
- os: macos-13
ruby: "2.5"
- os: macos-13
ruby: "2.4"
steps:
- uses: actions/checkout@v4
- name: setup
Expand Down

0 comments on commit 8e2d28e

Please sign in to comment.