Skip to content

chore(main): release oas_rails 0.8.1 #146

chore(main): release oas_rails 0.8.1

chore(main): release oas_rails 0.8.1 #146

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 install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
strategy:
fail-fast: false
matrix:
gemfile: [rails-7.0, rails-7.1, rails-7.2]
runs-on: ubuntu-latest
env:
RAILS_ENV: test
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- name: Run tests
run: bin/rails t
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
# Add or replace any other lints here
- name: Install Security Scan Gems
run: gem install bundler-audit brakeman rubocop
- name: Security audit dependencies
run: bundler-audit --update
- name: Security audit application code
run: brakeman -q -w2
- name: Lint Ruby files
run: bundle exec rubocop --parallel