Skip to content

Rails 7.1 compatibility #112

Rails 7.1 compatibility

Rails 7.1 compatibility #112

Workflow file for this run

name: "Rails CI"
on:
push:
branches:
- main
pull_request:
jobs:
build_test_lint_audit:
strategy:
matrix:
ruby-version:
# - "2.7"
# - "3.1"
- "3.2"
rails-version:
# - "6.1"
# - "7.0"
- "7.1"
continue-on-error: [false]
name: ${{ format('Tests (Ruby {0}, Rails {1})', matrix.ruby-version, matrix.rails-version) }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.continue-on-error }}
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.rails-version }}.gemfile
RAILS_ENV: test
SKIP_COV: true
steps:
- uses: actions/checkout@v2
- name: Install Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Build and Test
run: |
bin/bundle install --retry 3 --quiet
bin/bundle exec rails db:migrate
bin/bundle exec rails db:prepare
bin/bundle exec rails test
- name: Rubocop Lint
run: bin/bundle exec rubocop --parallel
- name: Security audit app code
run: bin/bundle exec brakeman -q -w3
- name: Security audit dependencies
run: bin/bundle exec bundler-audit --update --gemfile-lock gemfiles/${{ matrix.rails-version }}.gemfile.lock