Skip to content

Bump puma from 6.3.1 to 6.4.0 #218

Bump puma from 6.3.1 to 6.4.0

Bump puma from 6.3.1 to 6.4.0 #218

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
tests:
name: 'Run specs'
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: >-
--mount type=tmpfs,destination=/var/lib/postgresql/data
--health-cmd pg_isready
--health-interval 1s
--health-timeout 1s
--health-retries 10
env:
HANAMI_ENV: test
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
bundler-cache: true
- run: bundle exec rake db:migrate
- run: bundle exec rspec
- run: bundle exec standardrb