Skip to content

Bump sentry-rails from 5.22.1 to 5.22.2 #352

Bump sentry-rails from 5.22.1 to 5.22.2

Bump sentry-rails from 5.22.1 to 5.22.2 #352

Workflow file for this run

name: Test
on: push
jobs:
rails:
name: Rails
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16.3
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/ravn_test
RAILS_ENV: test
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: yarn
- run: bin/rails db:test:prepare
- run: bin/rails assets:precompile
- run: bin/rails test:all test packs/*