Skip to content

Commit

Permalink
Fix Rails main testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bquorning committed Oct 10, 2024
1 parent b40ab05 commit 7b60f4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: bundle install --jobs 4
bundler-cache: true
- name: RSpec
run: bundle exec rspec

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rails_main_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: bundle install --jobs 4
bundler-cache: true
- name: RSpec
run: bundle exec rspec

Expand Down
2 changes: 1 addition & 1 deletion spec/dummy_app/config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
DummyApp::Application.routes.draw do
mount Arturo::Engine => "/arturo"

resources :books, :only => 'show' do
resources :books, :only => :show do
post :holds, :on => :member
end
end

0 comments on commit 7b60f4f

Please sign in to comment.