summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2020-01-30 04:37:59 -0700
committerGitHub <noreply@github.com>2020-01-30 04:37:59 -0700
commitb8401603857d9d90c9a3340d6bfd6e0cdbaec5ad (patch)
tree1530e5f0070f2fd2d03e339376109cdcc40fa241 /.github/workflows
parent8fd99964ea1711591b66aad415223eb72a111b28 (diff)
fix bundler warning in CI (PR #1528)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bb266824..e09e0d3e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,7 +17,11 @@ jobs:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
- gem install bundler --version 2.1.2
+ gem install -N bundler
+ # NOTE using bundle config causes bundle install to crash; see https://github.com/eregon/use-ruby-action/issues/13
+ #bundle config --local path .bundle/gems
+ #bundle config --local without docs lint coverage
+ #bundle --jobs 3 --retry 3
bundle --jobs 3 --retry 3 --path .bundle/gems --without docs lint coverage
- name: Test
- run: bundle exec ruby -w $(bundle exec ruby -e "print File.join Gem.bindir, 'rake'") spec
+ run: bundle exec ruby -w $(bundle exec ruby -e 'print File.join Gem.bindir, %q(rake)') spec