Skip to content

Fix broken support for Puma 6.5.0 v0.5.0 #153

Fix broken support for Puma 6.5.0 v0.5.0

Fix broken support for Puma 6.5.0 v0.5.0 #153

Workflow file for this run

name: Ruby
on:
pull_request:
push: { branches: [master] }
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.3.5, 3.2.4, 3.1.5, 3.0.7]
env:
RUBY_VERSION: ${{ matrix.ruby-version }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Run Specs for V5 Puma
run: |
set -x; set -e; \
gem install bundler:2.5.23; \
export BUNDLE_GEMFILE=Gemfile.puma-v5; \
gem install bundler:2.5.23; \
bundle install -j 4 && bundle exec rspec --color --format progress -p 2 2>/dev/null
- name: Run Specs fo V6 Puma
run: |
set -x; set -e; \
gem install bundler:2.5.23; \
export BUNDLE_GEMFILE=Gemfile.puma-v6; \
gem install bundler:2.5.23; \
bundle install -j 4 && bundle exec rspec --color --format progress -p 2 2>/dev/null
- name: Rubocop
run: bundle exec rubocop --parallel || true
- name: Upload to Codecov
run: |
if [[ $(ruby -e 'puts RUBY_VERSION') == '3.3.1' ]]; then
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov
fi
# - uses: codecov/codecov-action@v4
# with:
# fail_ci_if_error: false # optional (default = false)
# flags: rspecs # optional
# token: ${{ secrets.CODECOV_TOKEN }} # required
# verbose: true # optional (default = false)`