Skip to content

Commit

Permalink
Actions: Add macOS Homebrew workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1nksm committed Aug 12, 2024
1 parent 581c11e commit a40d90f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/macos-brew.yml
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

0 comments on commit a40d90f

Please sign in to comment.