Skip to content

Update dependency psycopg2-binary to v2.9.10 - autoclosed #128

Update dependency psycopg2-binary to v2.9.10 - autoclosed

Update dependency psycopg2-binary to v2.9.10 - autoclosed #128

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main, dev ]
jobs:
frontend-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Run frontend tests
run: make frontend-test
backend-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Clean up any existing test containers
run: make test-clean
- name: Run backend tests
run: make backend-test-cov
- name: Clean up test containers
if: always()
run: make test-clean