-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actions: Add macOS Homebrew workflow
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
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 ksh 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 |