Merge pull request #27 from eregon/patch-1
Some checks failed
Main workflow / Run (ubuntu-latest) (push) Has been cancelled
Main workflow / Run (windows-latest) (push) Has been cancelled

Update README
This commit is contained in:
Bryan MacFarlane
2020-01-17 09:29:04 -05:00
committed by GitHub

View File

@@ -19,7 +19,7 @@ steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- uses: actions/setup-ruby@v1 - uses: actions/setup-ruby@v1
with: with:
ruby-version: '2.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax. ruby-version: '2.6.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax.
- run: ruby hello.rb - run: ruby hello.rb
``` ```
@@ -30,15 +30,13 @@ jobs:
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
strategy: strategy:
matrix: matrix:
ruby: [ '2.x', '3.x' ] ruby: [ '2.5.x', '2.6.x' ]
name: Ruby ${{ matrix.ruby }} sample name: Ruby ${{ matrix.ruby }} sample
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- name: Setup ruby - uses: actions/setup-ruby@v1
uses: actions/setup-ruby@v1
with: with:
ruby-version: ${{ matrix.ruby }} ruby-version: ${{ matrix.ruby }}
architecture: 'x64'
- run: ruby hello.rb - run: ruby hello.rb
``` ```