Pass through api options to item operations and support conditional w… #121
Workflow file for this run
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: | |
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 |