Skip to content

Blog post CMS

Blog post CMS #86

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports: ['5432:5432']
redis:
image: redis
ports: ['6379:6379']
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler: default
bundler-cache: true
- name: Precompile assets
run: RAILS_ENV=test bundle exec rake assets:precompile
- name: Use sample application.yml file
run: mv config/application-sample.yml config/application.yml
- name: Rubocop Check
run: bundle exec rubocop
- name: Run tests
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test
REDIS_URL: redis://localhost:6379/0
RAILS_ENV: test
PG_USER: postgres
run: |
bundle exec rails db:drop db:create db:schema:load RAILS_ENV=test
bundle exec rspec spec/