Bump version to 8.0.0 #58
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: | |
| - main | |
| - 'release-*' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release-*' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.1 | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Run linter | |
| run: bundle exec rake rubocop | |
| test: | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| ruby: ['3.2', '3.3', '3.4'] | |
| rails_version: ['~> 7.2', '~> 8.1'] | |
| blacklight_version: ['~> 8.0'] | |
| experimental: [false] | |
| include: | |
| - ruby: '3.4' | |
| rails_version: '~> 8.1' | |
| blacklight_version: '~> 9.0' | |
| experimental: false | |
| - ruby: '3.4' | |
| rails_version: '~> 8.1' | |
| blacklight_version: 'github' | |
| experimental: true | |
| env: | |
| RAILS_VERSION: ${{ matrix.rails_version }} | |
| BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }} | |
| ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test --skip-kamal --css=bootstrap --js=esbuild' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Install dependencies with Rails ${{ matrix.rails_version }} | |
| run: bundle install | |
| - name: Run tests | |
| run: bundle exec rake |