Skip to content

Commit

Permalink
Merge pull request #27 from ruby/fix-macos-build
Browse files Browse the repository at this point in the history
Fix macOS build
  • Loading branch information
hsbt authored Aug 1, 2024
2 parents 3bcb5c7 + 775a7ad commit 81adc6b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ name: CI
on: [push, pull_request]

jobs:
build:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
engine: cruby-truffleruby
min_version: 2.3
test:
needs: ruby-versions
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, 2.3, head, truffleruby-head ]
os: [ ubuntu-latest, macos-latest ]
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
os: [ ubuntu-latest, macos-13 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 81adc6b

Please sign in to comment.