Skip to content

Commit

Permalink
* ci: add Ruby 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Jan 8, 2025
1 parent 60e151f commit c118761
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: ["3.3"]
rails_version: ["~> 7.0.0", "~> 7.0", "~> 8.0.0"]
include:
- ruby_version: "3.4"
rails_version: "~> 8.0.0"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Create a PostgreSQL database
env:
Expand Down
2 changes: 1 addition & 1 deletion test/channel/base_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def error_handler
@connection.server.config.filter_parameters << :password
data = { password: "password", foo: "foo" }

assert_logged(':password=>"[FILTERED]"') do
assert_logged(/password(: |=>)"\[FILTERED\]"/) do
@channel.perform_action data
end
end
Expand Down

0 comments on commit c118761

Please sign in to comment.