Skip to content

Bump rubyXL from 3.4.27 to 3.4.33 #245

Bump rubyXL from 3.4.27 to 3.4.33

Bump rubyXL from 3.4.27 to 3.4.33 #245

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:
RACK_ENV: test
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_DB: mediators_ci_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: Setup test database
run: |
cp config/database.ci.yml config/database.yml
bundle exec rake db:create
bundle exec rake db:schema:load
- name: Lint Ruby files
run: bundle exec rubocop
- name: Brakeman
uses: reviewdog/action-brakeman@v2
with:
brakeman_version: gemfile
# --force required as no /app dir as expected
# https://github.com/presidentbeef/brakeman/issues/67#issuecomment-4947358
brakeman_flags: --force
- name: Run unit tests
run: bundle exec rspec
- name: Run feature tests
run: bundle exec cucumber
- name: Code coverage
uses: joshmfrankel/simplecov-check-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
minimum_suite_coverage: 93
minimum_file_coverage: 36
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/family-mediators-api/.github/workflows/deploy.yml@f9e414034f9fb3b749ba472160c90bf4bb86c0e9 (Line: 13, Col: 3): Unexpected value 'unset-current-credentials'
secrets: inherit