Skip to content

Fix failing tests and warnings #38

Fix failing tests and warnings

Fix failing tests and warnings #38

Workflow file for this run

name: "CI Tests"
on:
- "pull_request"
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
rails-version:
- "8.0"
- "7.2"
- "7.1"
- "7.0"
- "6.1"
- "main"
exclude:
- ruby-version: "3.0"
rails-version: "7.2"
- ruby-version: "3.0"
rails-version: "8.0"
- ruby-version: "3.0"
rails-version: "main"
env:
RAILS_VERSION: ${{ matrix.rails-version }}
name: ${{ format('Tests (Ruby {0}, Rails {1})', matrix.ruby-version, matrix.rails-version) }}
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- uses: "ruby/setup-ruby@v1"
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bin/rails standard
if: matrix.ruby-version != 3.2
- run: bin/rails test:all
- run: bundle exec rspec
- run: RSPEC_TYPE=feature bundle exec rspec