Bump rspec-rails from 6.0.1 to 7.0.1 in /src/supermarket/engines/fieri #3414
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: unit | |
'on': | |
pull_request: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs-chef-io' | |
jobs: | |
supermarket: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:13 | |
ports: ["5432:5432"] | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: supermarket_test | |
redis: | |
image: redis:latest | |
ports: ["6379:6379"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up ruby 3.1 | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: src/supermarket | |
ruby-version: 3.1.2 | |
bundler-cache: true | |
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR | |
- name: create database schema | |
run: bundle exec rake db:schema:load | |
env: | |
RAILS_ENV: test | |
working-directory: src/supermarket | |
- name: run db migration for running unit tests (specs) | |
run: bundle exec rake db:migrate | |
env: | |
RAILS_ENV: test | |
working-directory: src/supermarket | |
- name: run specs | |
run: bundle exec rake spec --trace | |
env: | |
RAILS_ENV: test | |
working-directory: src/supermarket | |
fieri: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:13 | |
ports: ["5432:5432"] | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: supermarket_test | |
redis: | |
image: redis:latest | |
ports: ["6379:6379"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up ruby 3.1 | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: src/supermarket/engines/fieri | |
ruby-version: 3.1.2 | |
bundler-cache: true | |
- uses: r7kamura/rubocop-problem-matchers-action@v1 # this shows the failures in the PR | |
- name: run specs | |
run: bundle exec rake spec --trace | |
env: | |
RAILS_ENV: test | |
working-directory: src/supermarket/engines/fieri |