Skip to content

Fix: ActionText::RichText parsing #74

Fix: ActionText::RichText parsing

Fix: ActionText::RichText parsing #74

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
rails-version:
- "7.1"
- "6.1"
- "main"
ruby-version:
- "3.0"
- "3.2"
env:
RAILS_ENV: test
RAILS_VERSION: ${{ matrix.rails-version }}
name: ${{ format('Test rails@{0} ruby@{1}', matrix.rails-version, matrix.ruby-version) }}
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test
standard:
runs-on: ubuntu-latest
name: "Standard"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
- name: Run Standard
run: bundle exec rake standard