Bump shoulda-matchers from 6.0.0 to 6.2.0 #2109
Workflow file for this run
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: CI | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
name: 'Tests' | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:11.5 | |
ports: ["5432:5432"] | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
bundler-cache: true | |
env: | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
- name: Setup test database | |
env: | |
DATABASE_URL: postgres://postgres:@localhost:5432/test | |
RAILS_ENV: test | |
run: | |
bundle exec rake db:create db:migrate | |
- name: Run tests | |
env: | |
DATABASE_URL: postgres://postgres:@localhost:5432/test | |
RAILS_ENV: test | |
run: bundle exec rake spec | |
- name: Report to Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.github_token }} |