chore: combine test coverage for core tests

This commit is contained in:
Stefan Benz
2025-07-07 18:11:38 +02:00
parent f606e46822
commit 4974e31faa
2 changed files with 12 additions and 8 deletions

View File

@@ -11,10 +11,12 @@ on:
type: string type: string
outputs: outputs:
integration_test_report: integration_test_report:
value: ${{ steps.cache.outputs.cache-hit != 'true' }} value: ${{ jobs.postgres.outputs.integration_test_report }}
jobs: jobs:
postgres: postgres:
outputs:
integration_test_report: ${{ steps.cache.outputs.cache-hit != 'true' }}
runs-on: runs-on:
group: zitadel-public group: zitadel-public
services: services:

View File

@@ -14,10 +14,12 @@ on:
type: string type: string
outputs: outputs:
unit_test_report: unit_test_report:
value: ${{ steps.cache.outputs.cache-hit != 'true' }} value: ${{ jobs.test.outputs.unit_test_report }}
jobs: jobs:
test: test:
outputs:
unit_test_report: ${{ steps.cache.outputs.cache-hit != 'true' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- -