Skip to content

Commit

Permalink
ci(shellspec): make MacOS run on modern Bash IQSS#7903
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Oct 5, 2021
1 parent 2d7dc63 commit d017dc3
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/shellspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ jobs:
name: "MacOS"
runs-on: macos-10.15
steps:
- name: Install shellspec
run: curl -fsSL https://git.io/shellspec | sh -s 0.28.1 --yes
- uses: actions/checkout@v2
- name: Run Shellspec
run: |
- name: Install modern bash and activate
run: |
brew install bash
echo "/usr/local/bin" >> $GITHUB_PATH
- name: Install shellspec
run: curl -fsSL https://git.io/shellspec | sh -s 0.28.1 --yes
- uses: actions/checkout@v2
- name: Run Shellspec
run: |
cd tests/shell
/Users/runner/.local/bin/shellspec
bash /Users/runner/.local/bin/shellspec

0 comments on commit d017dc3

Please sign in to comment.