Bump puma from 5.6.8 to 5.6.9 #144
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
max-parallel: 20 | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
PGHOST: localhost | |
PGPASSWORD: runner | |
PGUSER: runner | |
RAILS_ENV: test | |
name: rspec | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: "Set up PostgreSQL using VM's server" | |
run: | | |
sudo apt-get update | |
sudo apt-get install libpq-dev -y | |
sudo systemctl start postgresql.service | |
sudo -u postgres psql -c "CREATE USER runner WITH SUPERUSER PASSWORD 'runner'" | |
- run: bin/rails db:setup | |
- run: bin/rspec |