From 86daa9a781aea7fbb84d5d3d00cdab055db01757 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Thu, 19 Oct 2023 19:43:55 +0200 Subject: [PATCH] Renamed a few jobs (#246) --- .github/workflows/documentation.yaml | 4 ++-- .github/workflows/test-and-build-action.yaml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 75f4b8f..959ff72 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -9,7 +9,7 @@ on: jobs: doc-build: - name: Build + name: Doc-Build runs-on: ubuntu-latest steps: - name: Install prio to running the process @@ -40,7 +40,7 @@ jobs: path: documentations/_build/html/ doc-deploy: - name: Deployment + name: Doc-Deployment runs-on: ubuntu-latest needs: doc-build permissions: diff --git a/.github/workflows/test-and-build-action.yaml b/.github/workflows/test-and-build-action.yaml index e2763ca..f3d7fa9 100644 --- a/.github/workflows/test-and-build-action.yaml +++ b/.github/workflows/test-and-build-action.yaml @@ -10,6 +10,7 @@ on: jobs: test: + name: Pytest runs-on: ubuntu-latest timeout-minutes: 10 @@ -105,6 +106,7 @@ jobs: path: htmlcov/ build: + name: Wheel-Build if: ${{ github.event_name == 'push'}} runs-on: ubuntu-latest needs: test @@ -134,6 +136,7 @@ jobs: path: dist/ docker-build: + name: Docker Build if: ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/heads/dependabot/')}} runs-on: ubuntu-latest needs: [build]