Skip to content

Fixed minor issues with test to get all green so that we can continue development. #1270

Fixed minor issues with test to get all green so that we can continue development.

Fixed minor issues with test to get all green so that we can continue development. #1270

Workflow file for this run

name: Test Suite
# Run against all commits and pull requests.
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
pull_request:
jobs:
test_matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
rails:
- '61'
- '70'
- '71'
- '72'
- '80'
exclude:
- ruby: '3.3'
rails: '70'
- ruby: '3.3'
rails: '61'
- ruby: '3.2'
rails: '61'
- ruby: '3.0'
rails: '72'
- ruby: '3.0'
rails: '80'
- ruby: '3.1'
rails: '80'
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec
finish:
runs-on: ubuntu-latest
needs: [ test_matrix ]
steps:
- name: Wait for status checks
run: echo "All Green!"