Skip to content

Commit f4c27ad

Browse files
committed
Try to use setup-ruby on macos
1 parent f19222f commit f4c27ad

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/macos.yml

+7
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)