feat: add brew tap for oasis-cli #2
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: Brew audit & test | |
| on: [push, pull_request] | |
| jobs: | |
| audit: | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Homebrew/actions/setup-homebrew@master | |
| - name: Audit | |
| run: brew audit --strict --online --formula Formula/oasis.rb | |
| - name: Build & test | |
| run: | | |
| brew install --build-from-source Formula/oasis.rb | |
| oasis --version |