Skip to content

Pass through api options to item operations and support conditional w… #131

Pass through api options to item operations and support conditional w…

Pass through api options to item operations and support conditional w… #131

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, jruby-9.1, jruby-9.2, jruby-9.3, jruby-9.4]
env: [NEW_RAILS, OLD_RAILS]
exclude:
- ruby: '2.0'
env: NEW_RAILS
- ruby: 2.1
env: NEW_RAILS
- ruby: 2.2
env: NEW_RAILS
steps:
- name: Setup
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/checkout@v2
- name: Environment
run: echo "${{ matrix.env }}=1" >> $GITHUB_ENV
- name: Install
run: |
echo NEW_RAIS=$NEW_RAILS OLD_RAILS=$OLD_RAILS
bundle install --without docs
- name: Test
run: bundle exec rake release:test