Skip to content

Merge pull request #56 from tulibraries/rails-7-update #34

Merge pull request #56 from tulibraries/rails-7-update

Merge pull request #56 from tulibraries/rails-7-update #34

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ruby: 3.1
rails: 7.1
- ruby: 3.2
rails: 7.1
- ruby: 3.3
rails: 7.1
- ruby: 3.1
rails: 7.2
- ruby: 3.2
rails: 7.2
- ruby: 3.3
rails: 7.2
- ruby: 3.2
rails: 8.0
- ruby: 3.3
rails: 8.0
env:
RAILS_VERSION_SPEC: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake