Add zig to Brewfile #86
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| dotfile-build: | |
| name: Dotfiles | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check Brewfile contents | |
| run: brew bundle list | |
| - name: Setup zsh and shellcheck | |
| run: brew install zsh shellcheck | |
| - name: Run shell linter | |
| run: find . -name '*.zsh' -exec shellcheck --shell=bash {} + | |
| - name: Run combine script | |
| run: zsh combine.zsh | |
| - name: Run copy script | |
| run: zsh copy.zsh |