CDPT-2457 Add rehab period when no length given to motoring conviction disqualification. #620
Workflow file for this run
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: 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 | |
RACK_ENV: test | |
DATABASE_URL: "postgresql://postgres:postgres@127.0.0.1/disclosure-checker-test" | |
EXTERNAL_URL: mocked_in_tests | |
DEV_TOOLS_ENABLED: "1" | |
services: | |
postgres: | |
image: postgres:16-alpine | |
env: | |
POSTGRES_DB: disclosure-checker-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 --pure-lockfile | |
- name: Setup test database | |
run: bin/rails db:prepare | |
- name: Run linters and tests | |
run: bundle exec rake | |
- 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 | |
secrets: inherit |