Skip to content

Commit

Permalink
skip development gems in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
anapsix committed Jan 30, 2021
1 parent 706db87 commit 401bbf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ jobs:
run: |
gem list --silent -i bundler -v '~> 2' || gem install bundler -v '~> 2' --no-document
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle install --without development --jobs 4 --retry 3
- name: Run tests
run: bundle exec rspec ./spec/*
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ gem 'rake', '~> 11.1'
gem 'yard', '>= 0.9'

group :development do
gem 'irb'
gem 'pry'
end

group :test do
gem 'rspec', '>= 3.8'
gem 'rubocop', '>= 0.60'
gem 'irb'
gem 'rspec', '~> 3.10'
gem 'rubocop', '~> 1.7'
end

gemspec

0 comments on commit 401bbf5

Please sign in to comment.