Skip to content

docs: remove references to GOV.UK PaaS #15

docs: remove references to GOV.UK PaaS

docs: remove references to GOV.UK PaaS #15

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
# For OIDC code coverage upload
permissions:
id-token: write
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "3.11"
- name: "Install Python dependencies"
run: |
pip install -r requirements_test.txt
- name: "Install and run pre-commit hooks"
run: |
pre-commit install --install-hooks
pre-commit run --all-files
- name: "Start services"
run: |
./start-services.sh
- name: "Test"
run: |
./test_app.sh
- uses: codecov/codecov-action@v4
with:
use_oidc: true