From d53beeeb3d7410f5e013fbfd8bdd091fc39016e6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 7 Jan 2026 21:27:07 +0000 Subject: [PATCH] Fix CI workflow to run scons in latex directory Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 89c55b6..e8ca0a6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,11 +35,14 @@ jobs: - name: Generate test cases run: scons generate_tests + working-directory: latex - name: Generate PDF file run: cp test/${{matrix.lang}}/${{matrix.faculty}}/${{matrix.thesis}}.textest main.tex && scons all + working-directory: latex - name: Verify build with referential text run: | scons test pdf=build/pdfs/${{matrix.compiler}}.pdf \ ref=test/${{matrix.lang}}/${{matrix.faculty}}/${{matrix.thesis}}_${{matrix.compiler}}.txt + working-directory: latex