Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanhefner committed Dec 3, 2023
1 parent a52acde commit c52721f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,13 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true

# - name: sass-embedded
# run: |
# gem install sass-embedded
# This prevents a "Failed to build gem native extension" error when
# running `bundle install` inside a Rails app that is generated for
# testing. The error occurs only in CI and only when using Ruby 3.0 and
# Rails >= 7.1.
- name: Install sass-embedded gem
if: ${{ matrix.ruby-version == "3.0" }}
run: gem install sass-embedded

- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def create_new_rails_app(app_dir)
gemfile << %(gem "rails", path: #{Gem.loaded_specs["rails"].full_gem_path.inspect}\n)
end

gemfile << %(gem "psych", "~> 4.0.0"\n)
# gemfile << %(gem "psych", "~> 4.0.0"\n)

File.write("Gemfile", gemfile)

Expand Down

0 comments on commit c52721f

Please sign in to comment.