From 2107be2fe68086337130a25fb1c955c07490f765 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Tue, 29 Oct 2024 07:40:36 -0600 Subject: [PATCH] ci: try bash on windoze? --- .github/workflows/continuous-integration.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 7a114745..fd7d859e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -44,9 +44,12 @@ jobs: run: uv sync --all-extras - name: Test on windows if: runner.os == 'Windows' + shell: bash env: TMPDIR: 'D:\\a\\_temp' - run: scripts\\test + run: | + source .venv/bin/activate + scripts/test - name: Test if: runner.os != 'Windows' run: uv run scripts/test