summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index db1bad14..9116e0fd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,11 +13,14 @@ jobs:
uses: ./.github/workflows/quality.yml
test:
uses: ./.github/workflows/test.yml
- needs: quality
+ needs: [quality]
webui:
if: ${{ always() }}
uses: ./.github/workflows/webui.yml
needs: [quality, test]
+ cyber:
+ uses: ./.github/workflows/cyber.yml
+ needs: [quality, test, webui]
build:
uses: ./.github/workflows/build.yml
secrets:
@@ -25,4 +28,4 @@ jobs:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
- needs: [quality, test, webui]
+ needs: [quality, test, webui, cyber]