From 4e1d75a3e111a84d549faa7f16387b5720ac4864 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 27 Sep 2025 16:01:04 +0200 Subject: [PATCH] chore(ci): improved job naming --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8101e8bbe..e03701f2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ concurrency: permissions: repository-projects: read jobs: - build-linux: + tests: runs-on: ${{ matrix.os }} strategy: @@ -336,7 +336,7 @@ jobs: # Notify only once - when CI completes (and after deploy) in case it's successful notify-complete: needs: [ - build-linux, + tests, build-windows, docs-check, mypy-version-check, @@ -369,7 +369,7 @@ jobs: build: name: "Build" - needs: [ build-linux, build-windows, docs-check, mypy-version-check, pre-commit ] + needs: [ tests, build-windows, docs-check, mypy-version-check, pre-commit ] runs-on: ubuntu-22.04 steps: @@ -467,7 +467,7 @@ jobs: docker-build: name: "Docker Build and Deploy" needs: [ - build-linux, + tests, build-windows, docs-check, mypy-version-check,