Skip to content

chore(deps): update dependency rubocop-rspec to v2.27.0 #434

chore(deps): update dependency rubocop-rspec to v2.27.0

chore(deps): update dependency rubocop-rspec to v2.27.0 #434

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: everydayrails
ports: ["5432:5432"]
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup database
env:
RAILS_ENV: test
DATABASE_URL: "postgres://postgres:postgres@127.0.0.1/everydayrails_test?sslmode=disable"
run: |
bundle exec rake db:create
bundle exec rake db:schema:load
- name: Run tests
env:
RAILS_ENV: test
DATABASE_URL: "postgres://postgres:postgres@127.0.0.1/everydayrails_test?sslmode=disable"
run: bundle exec rake spec
- name: Coveralls
uses: coverallsapp/github-action@v2