Skip to content

Commit

Permalink
Update backend QA to run the latest docker build and Django tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtitherington committed Feb 26, 2024
1 parent 640de0d commit c46537d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/backendQA.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- main


permissions: read-all

jobs:
Expand All @@ -20,5 +19,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Docker
run: docker compose run web python manage.py test
- name: Set up Docker Compose
run: docker compose -f docker-compose.dev.yml pull
- name: Build the Docker Compose environment
run: docker compose -f docker-compose.dev.yml build
- name: Run tests
run: docker compose -f docker-compose.dev.yml run web python manage.py test

0 comments on commit c46537d

Please sign in to comment.