Skip to content

Commit

Permalink
Fix: CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Feb 20, 2025
1 parent 240f3e0 commit e01288c
Show file tree
Hide file tree
Showing 9 changed files with 142 additions and 140 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.3
ruby-version: '3.4'
bundler-cache: true
- run: bundle exec rubocop
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- { ruby: '3.1', file: rails_7 }
- { ruby: '3.2', file: rails_7 }
- { ruby: '3.3', file: rails_7 }
- { ruby: '3.4', file: rails_7 }
# - { ruby: '3.2' ,file: rails_edge }
steps:
- uses: actions/checkout@v3
Expand All @@ -27,10 +28,10 @@ jobs:
- name: Setup Firefox
uses: browser-actions/setup-firefox@latest
with:
firefox-version: "101.0"
firefox-version: "134.0.1"
- uses: browser-actions/setup-geckodriver@latest
with:
geckodriver-version: "0.31.0"
geckodriver-version: "0.32.2"
- name: Setup database configuration
run: cp config/database.gha.yml config/database.yml
- uses: harmon758/postgresql-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2024-08-31 12:33:26 UTC using RuboCop version 1.62.1.
# on 2025-02-20 15:23:50 UTC using RuboCop version 1.62.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Expand All @@ -24,7 +24,7 @@ RSpec/EmptyExampleGroup:
RSpec/ExampleLength:
Max: 22

# Offense count: 5
# Offense count: 6
RSpec/MultipleExpectations:
Max: 2

Expand Down
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
gem 'concurrent-ruby', '1.3.4'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.0.8'

Expand Down Expand Up @@ -78,5 +81,5 @@ group :test do
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'selenium-webdriver'
gem 'selenium-webdriver', '4.20'
end
Loading

0 comments on commit e01288c

Please sign in to comment.