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

Commit 18c61ab

Browse files
Merge pull request #27 from eregon/patch-1
Update README
2 parents c5dddd6 + d838e15 commit 18c61ab

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
- uses: actions/checkout@master
2020
- uses: actions/setup-ruby@v1
2121
with:
22-
ruby-version: '2.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax.
22+
ruby-version: '2.6.x' # Version range or exact version of a Ruby version to use, using semvers version range syntax.
2323
- run: ruby hello.rb
2424
```
2525
@@ -30,15 +30,13 @@ jobs:
3030
runs-on: ubuntu-16.04
3131
strategy:
3232
matrix:
33-
ruby: [ '2.x', '3.x' ]
33+
ruby: [ '2.5.x', '2.6.x' ]
3434
name: Ruby ${{ matrix.ruby }} sample
3535
steps:
3636
- uses: actions/checkout@master
37-
- name: Setup ruby
38-
uses: actions/setup-ruby@v1
37+
- uses: actions/setup-ruby@v1
3938
with:
4039
ruby-version: ${{ matrix.ruby }}
41-
architecture: 'x64'
4240
- run: ruby hello.rb
4341
```
4442

0 commit comments

Comments
 (0)