Skip to content

Commit 05e36f1

Browse files
authored
Merge pull request #324 from ruby/use-setup-ruby-on-macos
Try to use setup-ruby on macos
2 parents f19222f + f4c27ad commit 05e36f1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/macos.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ on: [push]
55
jobs:
66
build:
77
runs-on: macos-latest
8+
strategy:
9+
matrix:
10+
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
811
steps:
912
- uses: actions/checkout@master
13+
- name: Set up Ruby
14+
uses: actions/setup-ruby@v1
15+
with:
16+
version: ${{ matrix.ruby }}
1017
- name: Install dependencies
1118
run: gem install minitest
1219
- name: Run test

0 commit comments

Comments
 (0)