From 8aee76e9034a43a2cf4ea519534a65ca28bff5be Mon Sep 17 00:00:00 2001 From: gbetances089 Date: Tue, 15 Oct 2024 14:29:41 +0200 Subject: [PATCH] rename a few things --- .github/workflows/sanity_test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sanity_test.yml b/.github/workflows/sanity_test.yml index 805345f4..c0681e21 100644 --- a/.github/workflows/sanity_test.yml +++ b/.github/workflows/sanity_test.yml @@ -1,12 +1,12 @@ -name: Sanity test for examples +name: GHA to run unit test for examples on: push jobs: - run-sanity-test: - name: sanity test against examples + run-unit-test: + name: run unit test on examples strategy: matrix: - examples: + path-to-examples: [ ./servicetask/service-invocation-synchronous, ./servicetask/service-invocation-asynchronous, @@ -30,6 +30,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 17 - - name: run sanity test + - name: run unit tests run: mvn clean verify - working-directory: ${{ matrix.examples }} + working-directory: ${{matrix.path-to-examples}}