summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby McDonald <BobbyMcWho@users.noreply.github.com>2019-11-16 22:46:01 -0500
committerGitHub <noreply@github.com>2019-11-16 22:46:01 -0500
commitc24a14520369fe5db1e4106a52e5650db3681cca (patch)
tree0e4bc9b559dc424bc9b071dde7943bf5484ad7f6
parentfefdf3217c93dc698f90e6eaa1ee65fadfd106c5 (diff)
downloadhashie-c24a14520369fe5db1e4106a52e5650db3681cca.tar.gz
versions should be strings
-rw-r--r--.github/workflows/test.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index eb0a13c..52366d2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
- ruby-version: [2.1.x, 2.2.x, 2.3.x, 2.4.x, 2.5.x, ruby-head]
+ ruby-version: [ '2.1.x', '2.2.x', '2.3.x', '2.4.x', '2.5.x', '2.6.x']
steps:
- uses: actions/checkout@v1
- name: Set up Ruby ${{ matrix.ruby-version }}
@@ -23,3 +23,10 @@ jobs:
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
+
+ - name: Cache Primes
+ id: cache-primes
+ uses: actions/cache@v1
+ with:
+ path: prime-numbers
+ key: ${{ runner.os }}-primes