little more progress #32
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: "Ruby on Rails CI" | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "./deckhand" | |
services: | |
postgres: | |
image: postgres:15-alpine | |
ports: | |
- "5432:5432" | |
env: | |
POSTGRES_DB: rails_test | |
POSTGRES_USER: rails | |
POSTGRES_PASSWORD: password | |
redis: | |
image: redis:7-alpine | |
ports: | |
- "6379:6379" | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test" | |
REDIS_URL: "redis://localhost:6379" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Ruby and gems | |
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 | |
with: | |
bundler-cache: true | |
working-directory: "./deckhand" | |
- name: Set up database schema | |
run: bin/rails db:schema:load | |
- name: link tailwind | |
run: npm link tailwindcss | |
- name: Run tests | |
run: bin/rake test | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "./deckhand" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Ruby and gems | |
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 | |
with: | |
bundler-cache: true | |
working-directory: "./deckhand" | |
# Add or replace any other lints here | |
- name: Security audit dependencies | |
run: bundle exec bundle-audit --update | |
- name: rubocop | |
uses: reviewdog/action-rubocop@v2 | |
with: | |
rubocop_version: gemfile | |
rubocop_extensions: rubocop-rails:gemfile rubocop-performance:gemfile rubocop-rake:gemfile | |
rubocop_flags: --parallel | |
workdir: ./deckhand | |
skip_install: true | |
use_bundler: true | |
- name: brakeman | |
uses: reviewdog/action-brakeman@v2 | |
with: | |
brakeman_version: gemfile | |
workdir: ./deckhand | |
# reek is very opinionated, I'm partial | |
# - name: reek | |
# uses: reviewdog/action-reek@v1 | |
# with: | |
# reek_version: gemfile | |
#- uses: reviewdog/action-setup@v1 |