From 7ace208408fb97f93df5c06125fc0deed725610f Mon Sep 17 00:00:00 2001 From: Tanner Sommers Date: Thu, 25 Jul 2024 20:16:46 -0500 Subject: [PATCH] Change workdir to tauri directory on builds --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c03d86d..69c0eaa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,10 @@ jobs: with: toolchain: stable + # Change workdir to the `src-tauri` directory + - name: Change workdir + run: cd src-tauri + # we run our rust tests before the webdriver tests to avoid testing a broken application - name: Cargo test uses: actions-rs/cargo@v1