update transaction tests #581
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Run specs | |
strategy: | |
matrix: | |
ruby-version: ['3.2', '3.3'] | |
rails-version: ['rails-7.1', 'rails-7.2'] | |
env: | |
BUNDLE_WITHOUT: release | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run rspec | |
run: | | |
bundle exec appraisal install | |
cd spec/dummy | |
bundle exec rails db:test:prepare | |
cd ../.. | |
bundle exec appraisal ${{ matrix.rails-version }} rspec | |
lint: | |
runs-on: ubuntu-latest | |
name: Run rubocop | |
strategy: | |
matrix: | |
ruby-version: ['3.3'] | |
env: | |
BUNDLE_WITHOUT: release | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run rubocop | |
run: | | |
bundle exec rubocop |