Skip to content

Fix minitest not being executed #370

Fix minitest not being executed

Fix minitest not being executed #370

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
container: ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
include:
- ruby: ruby:2.5
- ruby: ruby:2.6
- ruby: ruby:2.7
- ruby: ruby:3.0
- ruby: ruby:3.1
rails: 6.0.5
- ruby: ruby:3.1
rails: 6.1.6
- ruby: ruby:3.1
rails: 7.0.3
env:
RAILS_VERSION: ${{ matrix.rails == '' && '6.1.6' || matrix.rails }}
steps:
- uses: actions/checkout@v2
- name: bundle install
run: bundle install -j$(nproc) --retry 3
- run: bundle exec rspec
timeout-minutes: 1