Skip to content

Commit

Permalink
Merge branch 'main' into fix-update-and-pattern-change
Browse files Browse the repository at this point in the history
* main:
  Loosen performance standard
  Drop trailing comma
  Update GitHub Actions flow with Ruby 3
  • Loading branch information
lewispb committed Apr 30, 2024
2 parents 37e20e3 + 5a54fdf commit 34e813e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
ruby-version: 3.3.1
bundler-cache: true
- name: Run rubocop
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
CI: true
strategy:
matrix:
ruby-version: ['3.0']
ruby-version: ['3.0', '3.3']
services:
redis:
image: redis:4.0-alpine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class RequestFilterMiddlewarePerformanceTest < ActionDispatch::IntegrationTest
assert_equal 200, status
}

assert_slower_by_at_most 1.23, baseline: baseline do
assert_slower_by_at_most 1.3, baseline: baseline do
MissionControl::Web.configuration.middleware_enabled = true

get posts_path
Expand Down

0 comments on commit 34e813e

Please sign in to comment.