Github Actions: Updates rubies and rails #179
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: test | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
# Trigger on multiple events. | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v4 | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rails: | |
- "6.0" | |
- "6.1" | |
- "7.0" | |
- "7.1" | |
- "7.2" | |
- "8.0" | |
- "edge" | |
ruby: | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
include: | |
- ruby: "2.6" | |
rails: "6.0" | |
- ruby: "2.7" | |
rails: "6.0" | |
exclude: | |
- ruby: "2.7" | |
rails: "7.2" | |
- ruby: "3.0" | |
rails: "7.2" | |
- ruby: "2.7" | |
rails: "8.0" | |
- ruby: "3.0" | |
rails: "8.0" | |
- ruby: "2.7" | |
rails: "edge" | |
- ruby: "3.0" | |
rails: "edge" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: | | |
cp gemfiles/rails_${{matrix.rails}}/Gemfile Gemfile | |
echo "gemspec" >> Gemfile | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
bundler: latest | |
rubygems: latest | |
continue-on-error: ${{ matrix.rails == 'edge' }} | |
- name: Run tests | |
env: | |
RAILS_VERSION: ${{ matrix.rails }} | |
run: | | |
bundle exec rake spec | |
script/integration.sh | |
continue-on-error: ${{ matrix.rails == 'edge' }} |