From e904c9c8b5561c517a2b71b8654975b214fd80e5 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Mon, 31 Jul 2023 11:00:19 +1000 Subject: [PATCH] [DDS-1576] Added check of working dir. --- .github/workflows/goss-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/goss-tests.yml b/.github/workflows/goss-tests.yml index 7f3e4f66..a9db22b8 100644 --- a/.github/workflows/goss-tests.yml +++ b/.github/workflows/goss-tests.yml @@ -27,8 +27,10 @@ jobs: ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.images }} tags: | type=ref,event=branch + - run: ls -al $(pwd) + - run: ls -al ./tests - name: Install Goss uses: e1himself/goss-installation-action@v1.0.3 - name: Execute Goss tests run: | - GOSS_FILE=./tests/goss.${{ matrix.type }}_goss.yaml 'dgoss run -i ${{ steps.meta.outputs.tags }}' + GOSS_FILE=./tests/goss.${{ matrix.type }}_goss.yaml; dgoss run -i ${{ steps.meta.outputs.tags }}