Removed all mentions of vagrant; DB user is now postgres
#7
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, pull_request ] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
ports: ["5432:5432"] | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
POSTGRES_DB: sessionizer_test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Linux libraries | |
run: sudo apt-get install -y libpq-dev | |
- name: Set up Ruby and run bundle install | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.7 | |
bundler-cache: true | |
- name: Show Ruby version | |
run: ruby -v | |
- name: Prepare database and run tests | |
env: | |
CI: github | |
RAILS_ENV: test | |
POSTGRES_DB: sessionizer_test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
run: | | |
bundle exec rake db:create db:migrate db:test:prepare | |
bundle exec rails spec |