Skip to content

Bump sidekiq from 7.2.2 to 7.3.0 #62

Bump sidekiq from 7.2.2 to 7.3.0

Bump sidekiq from 7.2.2 to 7.3.0 #62

Workflow file for this run

name: Specs
on: [pull_request]
permissions:
contents: read
jobs:
rspec:
name: runner / rspec
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports: ["5432:5432"]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Setup test database
env:
RAILS_ENV: test
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
run: |
bin/rails db:prepare
- name: Run RSpec
env:
RAILS_ENV: test
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
run: |
bundle exec rspec --format RSpec::Github::Formatter