From c52afa4cf48ffa8764696181d15774f531241f2a Mon Sep 17 00:00:00 2001 From: mhucka Date: Tue, 30 Dec 2025 02:00:53 +0000 Subject: [PATCH] Use GHA "working-directory" instead of cd'ing A better practice for jobs where the first step is to `cd` into a directory is to use the field `working-directory` in the step definition and skip the `cd`. --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d74432949..85e9db19c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -441,9 +441,8 @@ jobs: run: docker run --rm qsim-base:latest -c /qsim/circuits/circuit_q24 - name: Test installation process - run: | - cd install/tests - docker compose build + working-directory: install/tests + run: docker compose build report-results: name: CI