chore(deps): bump sentry-rails from 5.17.3 to 5.18.0 #444
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
services: | |
db: | |
image: postgres:10.13 | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: doctors_test | |
env: | |
CI: true | |
RAILS_ENV: test | |
DATABASE_URL: postgres://postgres:password@localhost:5432/doctors_test | |
TZ: America/Mexico_City | |
steps: | |
- name: Checkout π | |
uses: actions/checkout@v4 | |
- name: Setup Node.js π | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Node.js β¨ | |
run: npm install | |
- name: Install Ruby β¦ | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
cache-version: 1 | |
- name: Run linter π | |
run: bundle exec rubocop --parallel --display-time | |
- name: Setup database π | |
run: bin/rails db:schema:load | |
- name: Run test suite π | |
run: bundle exec rspec | |
- name: Publish code coverage π | |
uses: paambaati/codeclimate-action@v6.0.0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageLocation: ${{github.workspace}}/coverage/coverage.json:simplecov | |
debug: true |