Remove the need for codeql job to complete before going to the next stage in dev workflow

This commit is contained in:
Théophile Diot 2024-01-04 12:55:20 +00:00
parent 624ed08af5
commit 3e0a987a6b
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -72,19 +72,19 @@ jobs:
# UI tests
tests-ui:
needs: [codeql, build-containers]
needs: [build-containers]
uses: ./.github/workflows/tests-ui.yml
with:
RELEASE: dev
tests-ui-linux:
needs: [codeql, build-packages]
needs: [build-packages]
uses: ./.github/workflows/tests-ui-linux.yml
with:
RELEASE: dev
# Core tests
prepare-tests-core:
needs: [codeql, build-containers, build-packages]
needs: [build-containers, build-packages]
runs-on: ubuntu-latest
steps:
- name: Checkout repository