The full matrix again #121
Workflow file for this run
This file contains 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 | |
jobs: | |
test: | |
name: CI Ruby ${{ matrix.ruby-version }} AR ${{ matrix.activerecord-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
ruby-version: ['2.6.10', '2.7.8', '3.0.6', '3.1.4', '3.2.2'] | |
activerecord-version: ['5.0', '5.1', '5.2', '6.0', '6.1', '7.0', '7.1'] | |
exclude: | |
# Rails 7's gemspec requires ruby >= 2.7 | |
- ruby-version: '2.6.10' | |
activerecord-version: '7.0' | |
- ruby-version: '2.6.10' | |
activerecord-version: '7.1' | |
# Rails 5.x is unlikely ever to support ruby >= 3.0 | |
# https://github.com/rails/rails/issues/40938#issuecomment-751569171 | |
- ruby-version: '3.0.6' | |
activerecord-version: '5.0' | |
- ruby-version: '3.0.6' | |
activerecord-version: '5.1' | |
- ruby-version: '3.0.6' | |
activerecord-version: '5.2' | |
- ruby-version: '3.1.4' | |
activerecord-version: '5.0' | |
- ruby-version: '3.1.4' | |
activerecord-version: '5.1' | |
- ruby-version: '3.1.4' | |
activerecord-version: '5.2' | |
- ruby-version: '3.2.2' | |
activerecord-version: '5.0' | |
- ruby-version: '3.2.2' | |
activerecord-version: '5.1' | |
- ruby-version: '3.2.2' | |
activerecord-version: '5.2' | |
steps: | |
- name: Cleanup | |
uses: Automodality/action-clean@v1 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: docker compose build --build-arg ruby_version=${{ matrix.ruby-version }} --build-arg activerecord_version=${{ matrix.activerecord-version }} | |
- name: Run standardrb | |
run: docker compose run --rm --no-deps app bash --login -c 'bundle exec standardrb' | |
- name: Run rubocop | |
run: docker compose run --rm --no-deps app bash --login -c 'bundle exec rubocop' | |
- name: Run tests | |
run: docker compose run --rm app bash --login -c 'bundle exec rake' |