summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authornicolargo <nicolashennion@gmail.com>2024-05-12 11:13:59 +0200
committernicolargo <nicolashennion@gmail.com>2024-05-12 11:13:59 +0200
commitafb06cb23067c6695ee49e06819eb01eae1b43d2 (patch)
treec499a4f32ba6d7bff7ae8834550c1d1da1fac65e /.github
parent4ff7c82559a12607017755a159f4ee85fbdd9f50 (diff)
WebUI not needed to build in CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f2e99c18..21a93ee5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,7 +21,7 @@ jobs:
cyber:
if: github.event_name != 'pull_request'
uses: ./.github/workflows/cyber.yml
- needs: [quality, test, webui]
+ needs: [quality, test]
build:
if: github.event_name != 'pull_request'
uses: ./.github/workflows/build.yml
@@ -30,4 +30,4 @@ jobs:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
- needs: [quality, test, webui, cyber]
+ needs: [quality, test]