fix(stint): drop auto_updates true + add manpage stanza #23
Workflow file for this run
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: Test casks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Symlink checkout as a Homebrew tap | |
| run: | | |
| set -euo pipefail | |
| taps_dir="$(brew --repository)/Library/Taps/reyemtech" | |
| mkdir -p "$taps_dir" | |
| ln -sf "$GITHUB_WORKSPACE" "$taps_dir/homebrew-tap" | |
| - run: brew audit --strict --tap reyemtech/tap |