diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 064bf77b..50bf2594 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,4 +55,4 @@ jobs: run: bin/rubocop - name: Run tests - run: bin/rails db:setup && bin/rails db:migrate && bin/rails test + run: bundle exec rails db:setup && bundle exec rails db:migrate && bundle exec rails test diff --git a/Gemfile b/Gemfile index 12542bec..4d544ea5 100644 --- a/Gemfile +++ b/Gemfile @@ -20,3 +20,4 @@ gem "tapioca", "~> 0.13", require: false, platforms: :ruby gem "psych", "~> 5.1", require: false gem "rails" gem "webmock" +gem "tzinfo-data" diff --git a/Gemfile.lock b/Gemfile.lock index b7b5b0de..b44c0403 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -266,6 +266,8 @@ GEM timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) + tzinfo-data (1.2024.1) + tzinfo (>= 1.0.0) unicode-display_width (2.5.0) webmock (3.23.0) addressable (>= 2.8.0) @@ -301,6 +303,7 @@ DEPENDENCIES sorbet-static-and-runtime sqlite3 (< 2) tapioca (~> 0.13) + tzinfo-data webmock BUNDLED WITH diff --git a/gemfiles/Gemfile-rails-main b/gemfiles/Gemfile-rails-main index 24bf5cd1..ed86c4ea 100644 --- a/gemfiles/Gemfile-rails-main +++ b/gemfiles/Gemfile-rails-main @@ -20,3 +20,4 @@ gem "tapioca", "~> 0.11", require: false, platforms: :ruby gem "psych", "~> 5.1", require: false gem "rails", github: "rails/rails", branch: "main" gem "webmock" +gem "tzinfo-data"