summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby McDonald <BobbyMcWho@users.noreply.github.com>2019-11-16 22:35:28 -0500
committerGitHub <noreply@github.com>2019-11-16 22:35:28 -0500
commitfefdf3217c93dc698f90e6eaa1ee65fadfd106c5 (patch)
tree35b8e77eb8fa781b932788682e25b0833f01276f
parente59d03f1de7331f36e46db7dcf8ae1a1ba11f261 (diff)
downloadhashie-fefdf3217c93dc698f90e6eaa1ee65fadfd106c5.tar.gz
Use correct matrix variable
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1b06619..eb0a13c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,10 +12,10 @@ jobs:
ruby-version: [2.1.x, 2.2.x, 2.3.x, 2.4.x, 2.5.x, ruby-head]
steps:
- uses: actions/checkout@v1
- - name: Set up Ruby ${{ matrix.ruby }}
+ - name: Set up Ruby ${{ matrix.ruby-version }}
uses: actions/setup-ruby@v1
with:
- ruby-version: ${{ matrix.ruby }}
+ ruby-version: ${{ matrix.ruby-version }}
- name: Build and test with Rake
env:
CI: 'true'