Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v5

- name: Install PostgreSQL client
- name: Install PostgreSQL client and Redis tools
run: |
sudo apt-get update -qq
sudo apt-get -yqq install libpq-dev redis-tools

- name: Set up Ruby
Expand Down Expand Up @@ -84,4 +85,4 @@ jobs:
- name: Run tests
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: COVERAGE=true bundle exec rspec spec
run: COVERAGE=true bundle exec rspec spec
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ DEPENDENCIES
propshaft (~> 0.8)
pry-rails (~> 0.3)
puma (~> 6.4)
rails (~> 8.0)
rails (~> 8.0.0)
rails-controller-testing
rails-i18n (~> 8.0)
rails-i18n (~> 8.0.0)
rails_bootstrap_navbar (~> 3.0)
redis (~> 5.0)
redis-namespace (~> 1.11)
Expand Down
2 changes: 1 addition & 1 deletion app/views/lockfiles/show.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
= link_to "Show content", "#", data: { bs_toggle: "modal", bs_target: "#lockfile-content-modal" }

%section
%section{ class: "overflow-x-auto" }
= render template: "gemmies/compat_table", locals: { gemmies: @lockfile.gemmies, inaccessible_gemmies: @lockfile.inaccessible_gemmies }

= render "email_notifications/form", notifiable: @lockfile
Expand Down