ci: fix brew style/audit to use formula path instead of --tap flag #3
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: Validate Formula | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| audit: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Tap this repository | |
| run: brew tap openbootdotdev/tap "$(pwd)" | |
| - name: Audit formula | |
| run: brew audit --formula Formula/openboot.rb | |
| - name: Check style | |
| run: brew style Formula/openboot.rb |