From 0504b8cbd20f6815587835c1d6f987bb3889daf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michalina=20Ciencia=C5=82a?= Date: Wed, 10 Feb 2021 08:49:09 +0100 Subject: [PATCH] Simplified creation of test results directory Command run in the step creating test results directory has been simplified. There is no need to use GITHUB_WORKSPACE env variable here as commands executed via 'run' keyword are executed in that location by default. --- .github/workflows/client.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 081dedba2e..a10ea09c23 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -24,7 +24,7 @@ jobs: --tag keep-client . - name: Create test results directory run: | - mkdir -p $GITHUB_WORKSPACE/test-results/ + mkdir test-results - name: Run Go tests run: | docker run \ @@ -32,7 +32,7 @@ jobs: --workdir /go/src/github.com/keep-network/keep-core \ go-build-env \ gotestsum --junitfile /mnt/test-results/unit-tests.xml - - name: Publish Unit Test results + - name: Publish unit test results uses: EnricoMi/publish-unit-test-result-action@v1.7 if: always() # guarantees that this action always runs, even if earlier steps fail with: