Bump codecov/codecov-action from 4 to 5 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS Homebrew | |
on: [push] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
macos-latest: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: brew upgrade | |
- run: brew install dash bash ksh93 mksh yash zsh | |
- name: Install shellspec | |
run: | | |
echo "${HOME}/.local/bin" >> "$GITHUB_PATH" | |
curl -fsSL https://git.io/shellspec | sh -s master -y | |
- name: Test in various shells | |
run: make test_in_various_shells |