Cache header normalization to reduce object allocation #259
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
BUNDLE_WITHOUT: "development" | |
JRUBY_OPTS: "--dev --debug" | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2, ruby-3.3 ] | |
os: [ ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: bundle exec rspec | |
run: bundle exec rspec --format progress --force-colour | |
test-flaky: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ruby: [ jruby-9.4 ] | |
os: [ ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: bundle exec rspec | |
continue-on-error: true | |
run: bundle exec rspec --format progress --force-colour | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ruby-3.0 | |
bundler-cache: true | |
- name: bundle exec rubocop | |
run: bundle exec rubocop --format progress --color | |
- run: bundle exec rake verify_measurements |