From 1d182da48d6bc72f933c0c439565d7e9d6cd40e4 Mon Sep 17 00:00:00 2001 From: Gijs de Jong Date: Fri, 13 Oct 2023 17:37:58 +0200 Subject: [PATCH] Ensure pwd is set to integration-tests --- .github/workflows/integration-test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 9fc335931c..25894ba2b5 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -32,9 +32,7 @@ jobs: run: mvn --version - name: Install error-prone-support snapshot run: mvn -T1C install -DskipTests -Dverification.skip - - name: Ensure runnable - run: chmod +x ./integration-tests/run.sh - - name: Check current directory - run: pwd && ls -l - name: Run integration test - run: ./integration-tests/run.sh + # ensure this script is executed in the integration-tests directory + working-directory: ./integration-tests + run: bash ./run.sh