Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Merge pull request #27 from eregon/patch-1
Browse files Browse the repository at this point in the history
Update README
  • Loading branch information
bryanmacfarlane authored Jan 17, 2020
2 parents c5dddd6 + d838e15 commit 18c61ab
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ steps:
- uses: actions/checkout@master
- uses: actions/setup-ruby@v1
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
```
Expand All @@ -30,15 +30,13 @@ jobs:
runs-on: ubuntu-16.04
strategy:
matrix:
ruby: [ '2.x', '3.x' ]
ruby: [ '2.5.x', '2.6.x' ]
name: Ruby ${{ matrix.ruby }} sample
steps:
- uses: actions/checkout@master
- name: Setup ruby
uses: actions/setup-ruby@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
architecture: 'x64'
- run: ruby hello.rb
```
Expand Down

0 comments on commit 18c61ab

Please sign in to comment.