From 0426e4704e33d65543d1ea82e9928106107c6f7f Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 20 Aug 2024 10:54:12 +0200 Subject: [PATCH] sets shell to bash in ci --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8041968..4c9a93d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,26 +9,26 @@ jobs: icon: 🐧, label: Linux, os: ubuntu, - runner: ubuntu-latest, - shell: bash --noprofile --norc -eo pipefail + runner: ubuntu-latest } - { icon: 🍎, label: macOS, os: macos, - runner: macos-13, # x86 - shell: bash --noprofile --norc -eo pipefail + runner: macos-13 # x86 } - { icon: 🏁, label: Windows, os: windows, - runner: windows-latest, - shell: msys2 + runner: windows-latest } nim: [1.6.18] name: ${{ matrix.platform.icon }} ${{ matrix.platform.label }} - Nim v${{ matrix.nim }} runs-on: ${{ matrix.platform.os }}-latest + defaults: + run: + shell: bash steps: - uses: actions/checkout@v4 with: