summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-10-12 02:17:05 -0600
committerDan Allen <dan.j.allen@gmail.com>2022-10-12 02:17:05 -0600
commit24956eff390f56d27c62accf0f6ea4a6eeb89b8f (patch)
tree2960c3d3c03a14273e174485c3ea7c64fcae7258 /Gemfile
parentc533889f1ed086ce90206cfffe37d371fc02c5d3 (diff)
manage bundler groups correctly in CI workflow
- start by excluding coverage, docs, and lint - reenable coverage and docs groups for primary - run tests as last step - ignore coverage group if Ruby version < 2.5.0
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 781acbaf..5ad259e6 100644
--- a/Gemfile
+++ b/Gemfile
@@ -37,4 +37,4 @@ end unless (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.5.0')
group :coverage do
gem 'json', '~> 2.2.0' if RUBY_ENGINE == 'truffleruby'
gem 'simplecov', '~> 0.16.0'
-end
+end unless (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.5.0')