Skip to content

Bump the minor-and-patch group with 2 updates #30

Bump the minor-and-patch group with 2 updates

Bump the minor-and-patch group with 2 updates #30

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3", "3.4", "4.0"]
rails: ["rails-7-2", "rails-8-0", "rails-8-1"]
name: Ruby ${{ matrix.ruby }} / ${{ matrix.rails }}
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- run: chmod -R o-w "$(ruby -e 'puts Gem.dir')/gems" 2>/dev/null || true
- run: bundle install
- run: bundle exec appraisal ${{ matrix.rails }} bundle install
- run: bundle exec appraisal ${{ matrix.rails }} rake test
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec rubocop
herb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec herb analyze app/views