Bump rails from 7.1.4.2 to 7.1.5 #61
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: Specs | |
on: | |
- pull_request | |
jobs: | |
appraisal: | |
name: appraisal | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu ] | |
ruby: [ "3.0", "3.1", "3.2", "3.3" ] | |
steps: | |
- name: Check out code. | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- run: bundle check || bundle install | |
- run: ./bundle_install_each_appraisal.sh | |
- name: appraisal | |
run: bundle exec appraisal rspec |