Skip to content

Merge pull request #572 from better-together-org/dependabot/bundler/b… #761

Merge pull request #572 from better-together-org/dependabot/bundler/b…

Merge pull request #572 from better-together-org/dependabot/bundler/b… #761

Workflow file for this run

# This workflow uses actions that are not certified by GitHub. They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on: push
jobs:
rspec:
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis:latest
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password
elasticsearch:
image: elasticsearch:7.17.23
ports:
- "9200:9200"
env:
"node.name": elasticsearch
"cluster.name": better-together-es
"discovery.seed_hosts": elasticsearch
"discovery.type": single-node
"bootstrap.memory_lock": true
"ES_JAVA_OPTS": "-Xms512m -Xmx512m"
env:
RAILS_ENV: test
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"
ES_HOST: "http://localhost"
steps:
- name: Checkout code
uses: actions/checkout@v3
# Add or replace dependency steps here
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install Chrome
run: sudo apt-get install -y chromium-browser
# Add or replace database setup steps here
- name: Set up database schema
run: rm -f tmp/pids/server.pid && bundle exec rails db:schema:load
# Add or replace test runners here
- name: Run tests
run: rm -f tmp/pids/server.pid && bundle exec rspec
rubocop:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint Ruby files with Rubocop
run: bundle exec rubocop --parallel
security:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Generate binstubs
run: bundle binstubs bundler-audit --force
- name: Security audit dependencies
run: bundle exec bundler-audit --update
- name: Security audit application code
run: bundle exec brakeman -q -w2