Skip to content

Fix the uninitialized constant ActionView::Helpers::UrlHelper::URI error in Rails 7.2.2+ or 7.1.5+ #28

Fix the uninitialized constant ActionView::Helpers::UrlHelper::URI error in Rails 7.2.2+ or 7.1.5+

Fix the uninitialized constant ActionView::Helpers::UrlHelper::URI error in Rails 7.2.2+ or 7.1.5+ #28

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails_version }}
strategy:
matrix:
ruby: ['3.3', '3.2', '3.1', '3.0', '2.7']
rails_version: ['7.2', '7.1', '7.0', '6.1', ''] # '': with out rails (actionview)
exclude:
# rails 7.2: support ruby 3.1+
- ruby: '3.0'
rails_version: '7.2'
- ruby: '2.7'
rails_version: '7.2'
env:
RAILS_VERSION: ${{ matrix.rails_version }}
CI: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake