From 970ed9e34d535e1d521fd21dc423888641ebf038 Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Wed, 1 Feb 2023 14:40:40 +0200 Subject: [PATCH] remove hardcoded bash shell from test workflow Signed-off-by: Jari Kolehmainen --- .github/workflows/test.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 43cad88f6a..1180655a0a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,6 @@ jobs: - run: yarn run test:unit name: Run tests - shell: bash if: ${{ matrix.type == 'unit' }} - name: Install integration test dependencies @@ -76,5 +75,4 @@ jobs: - run: yarn run test:integration name: Run Windows integration tests - shell: bash if: ${{ runner.os == 'Windows' && matrix.type == 'smoke' }}