Skip to content

Bump actiontext from 7.1.3.3 to 7.1.3.4 #171

Bump actiontext from 7.1.3.3 to 7.1.3.4

Bump actiontext from 7.1.3.3 to 7.1.3.4 #171

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: Ruby
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.1
bundler-cache: true
- name: Run rubocop
run: |
bundle exec rubocop --parallel
test:
name: Tests
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
ruby-version: ['3.0', '3.3']
services:
redis:
image: redis:4.0-alpine
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Prepare database
run: bin/rails db:setup
- name: Run tests
run: bundle exec rake test
- name: Run performance tests
run: RAILS_ENV=profile bundle exec rake test:performance