From 77cddd78e467d30aa803deb90aadbfd540008ad8 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Fri, 3 Jan 2020 14:17:02 +0100 Subject: [PATCH] Use unquoted versions as they work fine and are more concise * More consistent with the platform. --- .github/workflows/test.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 01096b3..759fce4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-16.04, ubuntu-18.04, macos-latest ] - ruby: [ 'ruby-2.4', '2.5', 'ruby-2.6.5', '2.7.0', 'truffleruby', 'jruby' ] + ruby: [ ruby-2.4, 2.5, ruby-2.6.5, 2.7.0, truffleruby, jruby ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 74a1c70..6647586 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest ] - ruby: [ 'ruby-2.6', 'ruby-2.7', 'truffleruby-19.3.0', 'jruby-9.2.9.0' ] + ruby: [ ruby-2.6, ruby-2.7, truffleruby-19.3.0, jruby-9.2.9.0 ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -71,7 +71,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest ] - ruby: [ '2.4', '2.5', '2.6', '2.7', 'truffleruby', 'jruby' ] + ruby: [ 2.4, 2.5, 2.6, 2.7, truffleruby, jruby ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2