CI: update build matrix - Ruby 3.3 & Rails 7.1 #186
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: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Test (Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails_version }}) | |
runs-on: ubuntu-${{ matrix.ubuntu }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.1', '3.2', '3.3', jruby-head, ruby-head] | |
rails_version: | |
- '6.1.0' | |
- '7.0.0' | |
- '7.1.0' | |
- 'edge' | |
ubuntu: [latest] | |
include: | |
# Ruby 2.6 | |
- ruby: 2.6 | |
rails_version: '6.1.0' | |
ubuntu: '20.04' | |
# Ruby 2.7 | |
- ruby: 2.7 | |
rails_version: '6.1.0' | |
ubuntu: '20.04' | |
- ruby: 2.7 | |
rails_version: '7.0.0' | |
ubuntu: '20.04' | |
# Ruby 3.0 | |
- ruby: '3.0' | |
rails_version: '6.1.0' | |
ubuntu: '22.04' | |
- ruby: '3.0' | |
rails_version: '7.0.0' | |
ubuntu: '22.04' | |
# jruby-9.2 | |
- ruby: jruby-9.2 | |
rails_version: '6.0.0' | |
ubuntu: '20.04' | |
- ruby: jruby-9.2 | |
rails_version: '6.1.0' | |
ubuntu: '20.04' | |
# jruby-9.4 | |
- ruby: jruby-9.4 | |
rails_version: '7.0.0' | |
ubuntu: '22.04' | |
# | |
# The past | |
# | |
# EOL Active Record | |
- ruby: 2.2 | |
rails_version: '3.2.0' | |
ubuntu: '20.04' | |
- ruby: 2.1 | |
rails_version: '4.1.0' | |
ubuntu: '20.04' | |
- ruby: 2.4 | |
rails_version: '4.2.0' | |
ubuntu: '20.04' | |
- ruby: 2.4 | |
rails_version: '5.0.0' | |
ubuntu: '20.04' | |
- ruby: 2.5 | |
rails_version: '5.1.0' | |
ubuntu: '20.04' | |
- ruby: 2.6 | |
rails_version: '5.2.0' | |
ubuntu: '20.04' | |
- ruby: 2.7 | |
rails_version: '6.0.0' | |
ubuntu: '20.04' | |
continue-on-error: ${{ matrix.rails_version == 'edge' || endsWith(matrix.ruby, 'head') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
env: | |
RAILS_VERSION: ${{ matrix.rails_version }} | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Run tests | |
env: | |
RAILS_VERSION: ${{ matrix.rails_version }} | |
run: bundle exec rspec | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
flag-name: run-${{ matrix.ruby }}-${{ matrix.rails_version }} | |
parallel: true | |
finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel-finished: true |