Bump nokogiri from 1.19.2 to 1.19.3 (#36) #51
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |