From 3d59c5658489efcb0229e570c8af21ff0c741bd2 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 13 Nov 2020 17:32:49 +0000 Subject: [PATCH] Ensure sample build shell is bash on Windows --- .github/workflows/sample_build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sample_build.yml b/.github/workflows/sample_build.yml index 9cd98be4..926b1215 100644 --- a/.github/workflows/sample_build.yml +++ b/.github/workflows/sample_build.yml @@ -35,6 +35,7 @@ jobs: choco install vcpython27 -f -y - name: Generate sample project + shell: bash run: | if $should_fail; then python -m test.test_projects test.test_testing.project_with_a_failing_test sample_project @@ -45,6 +46,7 @@ jobs: should_fail: ${{ matrix.result == 'failure' }} - name: Build & test wheels + shell: bash run: | cd sample_project if $should_fail; then