Skip to content

Commit

Permalink
sets shell to bash in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
benbierens committed Aug 20, 2024
1 parent 3d7d9ff commit 0426e47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 0426e47

Please sign in to comment.