From 9001e670f726398553a9a7057e40de9654a8478c Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 8 Oct 2024 13:59:46 -0600 Subject: [PATCH] update names --- .github/workflows/get_and_run_tests.yml | 2 ++ .github/workflows/test.yml | 26 ++++++++++++++----------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/get_and_run_tests.yml b/.github/workflows/get_and_run_tests.yml index e5a603256c..6f287818a7 100644 --- a/.github/workflows/get_and_run_tests.yml +++ b/.github/workflows/get_and_run_tests.yml @@ -22,6 +22,7 @@ on: jobs: get-test-infos: + name: 'Get Test Infos' runs-on: ubuntu-latest outputs: test-infos: ${{ steps.get-test-infos.outputs.test-infos }} @@ -34,6 +35,7 @@ jobs: exclude-dirs: ${{ inputs.exclude-dirs }} run-tests: + name: 'Run' needs: get-test-infos uses: ./.github/workflows/run-test.yml with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1190d8a9f2..8d4deb31e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,12 +28,12 @@ jobs: exclude-dirs: ${{ steps.set-exclude-dirs.outputs.exclude-dirs }} steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/set_run_conditions - id: set-conditions - - name: Set exclude dirs - id: set-exclude-dirs + + - id: set-conditions + uses: ./.github/actions/set_run_conditions + + - id: set-exclude-dirs run: | - # Decode the base64 encoded conditions CONDITIONS=$(echo "${{ steps.set-conditions.outputs.conditions }}" | base64 -d) RELEASE_TESTS="${{ format(' @@ -94,6 +94,7 @@ jobs: echo "exclude-dirs=$EXCLUDE_DIRS" >> $GITHUB_OUTPUT run-tests: + name: ${{ matrix.test_group.name }} needs: - determine-should-run-tests - set-exclude-dirs @@ -104,26 +105,29 @@ jobs: test_group: - { name: 'Examples', directories: './examples' } - { - name: 'Class Syntax', + name: 'E2E Class', directories: './tests/end_to_end/candid_rpc/class_syntax' } - { - name: 'Functional Syntax', + name: 'E2E Functional', directories: './tests/end_to_end/candid_rpc/functional_syntax' } - { - name: 'HTTP Server', + name: 'E2E HTTP Server', directories: './tests/end_to_end/http_server' } - { - name: 'Class API', + name: 'Property Class', directories: './tests/property/candid_rpc/class_api' } - { - name: 'Functional API', + name: 'Property Functional', directories: './tests/property/candid_rpc/functional_api' } - - { name: 'IC API', directories: './tests/property/ic_api' } + - { + name: 'Property IC API', + directories: './tests/property/ic_api' + } uses: ./.github/workflows/get_and_run_tests.yml with: directories: ${{ matrix.test_group.directories }}