ruby/.github/workflows/workflow.yml

22 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"