From 0723defe3e076c59059a8046e6926306470825db Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 20 Aug 2024 08:45:37 +0200 Subject: [PATCH] gh workflow: enforce bash for globs --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eafee530..ea2a8e49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -121,10 +121,12 @@ jobs: - name: Test without coverage if: "! matrix.use_coverage" + shell: bash run: "tox run -e ${{ matrix.tox_env }} --installpkg dist/*.whl" - name: Test with coverage if: "matrix.use_coverage" + shell: bash run: "tox run -e ${{ matrix.tox_env }}-coverage --installpkg dist/*.whl" - name: Upload coverage