1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/.github/workflows/workflow.yml

21 lines
504 B
YAML

on: pull_request
jobs:
macos:
runs-on: macos-latest
strategy:
matrix:
ruby: [ '2.3.x', '2.4.x', '2.5.x', '2.6.x' ]
steps:
- uses: actions/checkout@master
- name: Setup ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
architecture: 'x64'
- name: Install Dependencies
run: util/ci.sh before_script
- name: Run Test
run: util/ci.sh script
env:
TEST_TOOL: "rubygems"