mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-02-04 14:19:49 +08:00
21 lines
532 B
YAML
21 lines
532 B
YAML
name: Unit Tests - Backend
|
|
|
|
# Triggers: Equivalent to ADO trigger block
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
|
|
|
|
jobs:
|
|
run_backend_tests:
|
|
name: Run Backend unit tests
|
|
permissions:
|
|
checks: write
|
|
uses: ./.github/workflows/template_unit_pytest.yml
|
|
# Pass parameters as inputs to the reusable workflow
|
|
with:
|
|
projectName: Backend # Value defined in original variables
|
|
workingDir: app/backend
|
|
testsFolderName: tests
|
|
# secrets: inherit # Inherit secrets from the parent workflow |