BMH-3439 Updated success response code to include multi-use virtual card approvals. #33
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: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Ruby ${{ matrix.version }} ${{ matrix.gemfile }} | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
strategy: | |
matrix: | |
version: | |
- 2.5 | |
- 2.6 | |
- 2.7 | |
gemfile: | |
- gemfiles/Gemfile.rails50 | |
- gemfiles/Gemfile.rails51 | |
- gemfiles/Gemfile.rails52 | |
- gemfiles/Gemfile.rails60 | |
- gemfiles/Gemfile.rails_master | |
exclude: | |
- version: 2.6 | |
gemfile: gemfiles/Gemfile.rails_master | |
- version: 2.5 | |
gemfile: gemfiles/Gemfile.rails_master | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby ${{ matrix.version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.version }} | |
bundler-cache: true | |
- name: Test | |
run: bundle exec rake test |