Bump rack from 2.2.6.4 to 2.2.8.1 #95
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: Run tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
- name: Build application | |
run: docker-compose build | |
- name: Test without Redis | |
run: docker-compose -f docker-compose.no-redis.yml run web rspec | |
- name: Test with Redis | |
run: docker-compose run web rspec | |
- name: Install bundler locally | |
run: gem install bundler --version 2.4.5 | |
- name: Install dependencies locally | |
run: bundle install | |
- name: Lint code | |
run: bundle exec rubocop | |
- name: Audit code | |
run: bundle exec bundler-audit check --update |