Skip to content

Bump rack from 2.0.6 to 2.2.8 #11

Bump rack from 2.0.6 to 2.2.8

Bump rack from 2.0.6 to 2.2.8 #11

Workflow file for this run

name: CI
on:
push:
branches: [$default-branch]
pull_request:
jobs:
test:
name: tests / ruby
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6.10']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/[email protected]
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
cache-version: 1
- name: Run tests
run: bundle exec rspec
rubocop:
name: linters / rubocop
runs-on: ubuntu-latest
env:
RUBY_VERSION: 2.6.10
RUBOCOP_VERSION: 1.41.1
steps:
- name: Codebase Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/[email protected]
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
cache-version: 1
- name: rubocop
uses: reviewdog/[email protected]
with:
rubocop_version: ${{ env.RUBOCOP_VERSION }}
rubocop_extensions: rubocop-performance rubocop-rake rubocop-i18n
reporter: github-check
fail_on_error: true