Skip to content

Commit

Permalink
Update command to run specs RSpec instead of Rake
Browse files Browse the repository at this point in the history
- Make appropriate code changes
  • Loading branch information
boddhisattva committed Jun 16, 2024
1 parent 5b7f180 commit 6ba8f51
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with RSpec
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby
Expand Down Expand Up @@ -35,4 +35,4 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
run: bundle exec rspec spec
4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,3 @@ group :development, :test do
gem 'pry'
gem 'rspec'
end

group :test do
gem 'rake'
end
2 changes: 0 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ GEM
public_suffix (5.0.5)
racc (1.8.0)
rainbow (3.1.1)
rake (13.2.1)
reek (6.3.0)
dry-schema (~> 1.13.0)
parser (~> 3.3.0)
Expand Down Expand Up @@ -165,7 +164,6 @@ DEPENDENCIES
fasterer
flog
pry
rake
reek
rspec
rubocop
Expand Down

0 comments on commit 6ba8f51

Please sign in to comment.