mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-21 13:28:57 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
name: Test Backend
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
permissions: {}
|
|
|
|
jobs:
|
|
test-backend:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version-file: .python-version
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
|
|
with:
|
|
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
|
|
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
|
|
version: "0.11.18"
|
|
- run: docker compose down -v --remove-orphans
|
|
- run: docker compose up -d db mailcatcher
|
|
- name: Migrate DB
|
|
run: uv run bash scripts/prestart.sh
|
|
working-directory: backend
|
|
- name: Run tests
|
|
run: uv run bash scripts/tests-start.sh "Coverage for ${{ github.sha }}"
|
|
working-directory: backend
|
|
- run: docker compose down -v --remove-orphans
|
|
- name: Store coverage files
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: coverage-html
|
|
path: backend/htmlcov
|
|
include-hidden-files: true
|
|
- name: Coverage report
|
|
run: uv run coverage report --fail-under=90
|
|
working-directory: backend
|