Merge pull request #14 from bluerabbit/support_enqueue_after_transact… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby_image: | |
- ruby:latest | |
- ruby:3.0 | |
- ruby:2.7 | |
- ruby:2.6 | |
bundle: | |
- latest | |
- activejob-6.1 | |
- activejob-6.0 | |
- activejob-5.2 | |
container: | |
image: ${{ matrix.ruby_image }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies and run tests | |
run: | | |
bundle | |
bundle exec appraisal install | |
bundle exec appraisal "${{ matrix.bundle }}" rake spec |