From 89b1b201e0c4ae2123abc4e044bcb3f51bce86dd Mon Sep 17 00:00:00 2001 From: Joe Wang Date: Tue, 30 Apr 2024 14:35:18 -0400 Subject: [PATCH] change job name --- .github/workflows/verify_library_generation.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/verify_library_generation.yaml b/.github/workflows/verify_library_generation.yaml index 59e2a7cede..8feec8a9d6 100644 --- a/.github/workflows/verify_library_generation.yaml +++ b/.github/workflows/verify_library_generation.yaml @@ -31,7 +31,7 @@ jobs: env: base_ref: ${{ github.event.pull_request.base.ref }} head_ref: ${{ github.event.pull_request.head.ref }} - integration_tests: + library-generation-integration-tests: runs-on: ubuntu-22.04 needs: should-run-library-generation-tests if: needs.should-run-library-generation-tests.outputs.should_run == 'true' @@ -65,7 +65,7 @@ jobs: run: | set -x python -m unittest library_generation/test/integration_tests.py - unit_tests: + library-generation-unit-tests: runs-on: ${{ matrix.os }} needs: should-run-library-generation-tests if: needs.should-run-library-generation-tests.outputs.should_run == 'true' @@ -114,7 +114,7 @@ jobs: run: | set -x python -m unittest discover -s library_generation/test/ -p "*unit_tests.py" - lint-shell: + library-generation-lint-shell: runs-on: ubuntu-22.04 needs: should-run-library-generation-tests if: needs.should-run-library-generation-tests.outputs.should_run == 'true' @@ -126,7 +126,7 @@ jobs: scandir: 'library_generation' format: tty severity: error - lint-python: + library-generation-lint-python: runs-on: ubuntu-22.04 needs: should-run-library-generation-tests if: needs.should-run-library-generation-tests.outputs.should_run == 'true'