ci: solidify promotion dependencies with explicit test list
Some checks failed
CI / Lint (ruff) (push) Successful in 11s
CI / SAST (bandit) (push) Successful in 12s
CI / Dependency audit (pip-audit) (push) Successful in 21s
CI / Test (Standard) (3.11) (push) Successful in 1m9s
CI / Test (Standard) (3.12) (push) Successful in 1m11s
CI / Test (Live) (3.11) (push) Successful in 54s
CI / Merge dev → testing (push) Has been cancelled
CI / Prepare Merge to Main (push) Has been cancelled
CI / Finalize Merge to Main (push) Has been cancelled
CI / Test (Fuzz) (3.11) (push) Has been cancelled

This commit is contained in:
2026-04-12 04:24:29 -04:00
parent 04685ba1c4
commit 6095d0d2ed

View File

@@ -90,7 +90,7 @@ jobs:
merge-to-testing: merge-to-testing:
name: Merge dev → testing name: Merge dev → testing
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test-fuzz] needs: [test-standard, test-live, test-fuzz]
if: github.ref == 'refs/heads/dev' if: github.ref == 'refs/heads/dev'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -111,7 +111,7 @@ jobs:
prepare-merge-to-main: prepare-merge-to-main:
name: Prepare Merge to Main name: Prepare Merge to Main
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test-fuzz] needs: [test-standard, test-live, test-fuzz]
if: github.ref == 'refs/heads/testing' if: github.ref == 'refs/heads/testing'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -133,7 +133,7 @@ jobs:
finalize-merge-to-main: finalize-merge-to-main:
name: Finalize Merge to Main name: Finalize Merge to Main
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test-fuzz] needs: [test-standard, test-live, test-fuzz]
if: startsWith(github.ref, 'refs/heads/temp/merge-') if: startsWith(github.ref, 'refs/heads/temp/merge-')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4