Hide the sign in/out links in the header if the user is unauthorised #1125
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: Test | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
rspec: | |
name: Rspec | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_USER: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-retries 5 | |
--health-timeout 5s | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/refer_serious_misconduct_test | |
RAILS_ENV: test | |
RAILS_MASTER_KEY: ${{secrets.RAILS_MASTER_KEY}} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare application environment | |
uses: ./.github/actions/prepare-app-env | |
- name: Setup DB | |
run: bin/rails db:prepare | |
- name: Run DfE Analytics | |
run: bin/rails dfe:analytics:check | |
- name: Run tests | |
run: bin/rails spec |