Skip to content

Bump rails from 7.0.7.2 to 7.0.8 #515

Bump rails from 7.0.7.2 to 7.0.8

Bump rails from 7.0.7.2 to 7.0.8 #515

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'README.md'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "3.2.2"
- run: bundle exec rubocop
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2"]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rake test