From 063bd86a69e09114f204430ae10f46effc909a79 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:29:01 +0000 Subject: [PATCH] Use working-directory for build and test steps Agent-Logs-Url: https://github.com/tbamud/tbamud/sessions/02b27398-2736-4f5c-bbd9-b212340323f8 Co-authored-by: welcor <357770+welcor@users.noreply.github.com> --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 57a6d39..4e7ddd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: - name: configure run: ./configure - name: build - run: cd src && touch .accepted && make + working-directory: src + run: touch .accepted && make - name: test - run: cd tests && make test + working-directory: tests + run: make test