Skip to content

Handle gracefully fixtures that only exist for tests in TestHelper.unload_fixture #144

Handle gracefully fixtures that only exist for tests in TestHelper.unload_fixture

Handle gracefully fixtures that only exist for tests in TestHelper.unload_fixture #144

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.5', '2.6', '2.7', '3.0' , '3.1', '3.2']
minimal: [ false, true ]
name: Ruby ${{ matrix.ruby }} tests, minimal=${{ matrix.minimal }}
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
env:
MINIMAL: ${{ matrix.minimal }}
run: bundle exec rake