Skip to content

Ignore Ruby 3.1 + Rails 8.0 #11

Ignore Ruby 3.1 + Rails 8.0

Ignore Ruby 3.1 + Rails 8.0 #11

Workflow file for this run

name: tests
on:
push:
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop --parallel --extra-details --display-style-guide
tests:
strategy:
fail-fast: false
matrix:
ruby-version: ["3.1", "3.2", "3.3", "3.4"]
rails-version: ["7.0", "7.1", "7.2", "8.0"]
exclude:
- ruby-version: "3.1"
rails-version: "8.0"
runs-on: ubuntu-latest
env:
RAILS_VERSION: ${{ matrix.rails-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "${{ matrix.ruby-version }}"
- name: Run tests
run: bundle exec rspec --format RSpec::Github::Formatter