Skip to content

Merge pull request #578 from alphagov/dependabot/bundler/rails-7.0.7.2 #115

Merge pull request #578 from alphagov/dependabot/bundler/rails-7.0.7.2

Merge pull request #578 from alphagov/dependabot/bundler/rails-7.0.7.2 #115

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
pull_request:
jobs:
security-analysis:
name: Security Analysis
uses: alphagov/govuk-infrastructure/.github/workflows/brakeman.yml@main
lint-ruby:
name: Lint Ruby
uses: alphagov/govuk-infrastructure/.github/workflows/rubocop.yml@main
test-ruby:
name: Test Ruby
runs-on: ubuntu-latest
steps:
- name: Setup MongoDB
uses: alphagov/govuk-infrastructure/.github/actions/setup-mongodb@main
with:
version: 2.6
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Initialize database
env:
RAILS_ENV: test
run: bundle exec rails db:setup
- name: Run RSpec
env:
RAILS_ENV: test
run: bundle exec rake spec