Skip to content

filter_record_transformer: use cgi/escape to avoid Ruby 4.0 deprecation #410

filter_record_transformer: use cgi/escape to avoid Ruby 4.0 deprecation

filter_record_transformer: use cgi/escape to avoid Ruby 4.0 deprecation #410

Workflow file for this run

name: Benchmark
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
permissions: read-all
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: false
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
ruby-version: ['4.0']
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c # v1.287.0
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run Benchmark
shell: bash # Ensure to use bash shell on all platforms
run: |
bundle exec rake benchmark:run:in_tail | tee -a $GITHUB_STEP_SUMMARY