Ensure it works with latest Rails 7.1 (#37) #234
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: Ruby | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
gemfile: | |
- Gemfile # latest Rails | |
- gemfiles/Gemfile-rails-6-1 | |
- gemfiles/Gemfile-rails-7-0 | |
ruby: | |
- '3.0' | |
- '3.1' | |
- '3.2' | |
# exclude: | |
# - gemfile: gemfiles/Gemfile-rails-6-0 | |
# ruby: '3.2' | |
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | |
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 4 | |
- name: Rubocop | |
run: bundle exec rubocop -D | |
- name: Run tests | |
run: bin/test |