mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-02-03 21:53:16 +08:00
19 lines
495 B
YAML
19 lines
495 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
|
|
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 |