Skip to content

build(deps): bump puma from 6.6.1 to 7.0.2 #85

build(deps): bump puma from 6.6.1 to 7.0.2

build(deps): bump puma from 6.6.1 to 7.0.2 #85

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pass_safe_app_test
# Use test-specific encryption keys for CI
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY: "0000000000000000000000000000000000000000000000000000000000000000"
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY: "1111111111111111111111111111111111111111111111111111111111111111"
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT: "2222222222222222222222222222222222222222222222222222222222222222"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- name: Set up database
run: |
bundle exec rails db:create
bundle exec rails db:migrate
- name: Run tests
run: bundle exec rails test
- name: Run system tests
run: bundle exec rails test:system
- name: Run RuboCop
run: bundle exec rubocop