Skip to content

Don't try to build for dependabot #479

Don't try to build for dependabot

Don't try to build for dependabot #479

Workflow file for this run

name: CI Workflow
on:
pull_request:
push:
branches:
- main
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
env:
RAILS_ENV: test
DATABASE_URL: "postgresql://postgres:postgres@127.0.0.1/find_unclaimed_court_money_test"
services:
postgres:
image: postgres:14-alpine
env:
POSTGRES_DB: find_unclaimed_court_money_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install packages
run: |
yarn install --frozen-lockfile
- name: Precompile assets
run: bin/rails assets:precompile
- name: Setup test database
run: bin/rails db:prepare
- name: Lint stylesheets
run: yarn run lint
- name: Lint Ruby files
run: bundle exec rubocop
- name: Security audit application code
run: bundle exec brakeman -q
- name: Run tests
run: bundle exec rspec
- name: Code coverage
uses: joshmfrankel/simplecov-check-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
minimum_suite_coverage: 100
minimum_file_coverage: 100
build-and-deploy:
needs: test
uses: ./.github/workflows/deploy.yml

Check failure on line 73 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / CI Workflow

Invalid workflow file

The workflow is not valid. In .github/workflows/test.yml (Line: 73, Col: 11): Error from called workflow ministryofjustice/find-unclaimed-court-money/.github/workflows/deploy.yml@f6baff1f36d78950372edde16f016b32d6a5e49d (Line: 17, Col: 9): Unexpected symbol: '"dependabot'. Located at position 30 within expression: ! github.triggering_actor == "dependabot[bot]"
secrets: inherit