feat: ghr v0.4.5 #31
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: brew test-bot | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test-bot: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-22.04 | |
| - ubuntu-24.04 | |
| - macos-13 | |
| - macos-14 | |
| - macos-15 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Pre-test steps | |
| uses: Homebrew/actions/pre-build@master | |
| with: | |
| bottles-directory: ${{ github.workspace }} | |
| - name: Install dependencies | |
| if: ${{ matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' }} | |
| run: sudo apt update && sudo apt install libpcsclite1 | |
| - run: brew test-bot --only-cleanup-before | |
| - run: brew test-bot --only-setup | |
| - run: brew test-bot --only-tap-syntax | |
| - run: brew test-bot --only-formulae | |
| if: github.event_name == 'pull_request' | |
| - name: Post-build steps | |
| if: always() | |
| uses: Homebrew/actions/post-build@master | |
| with: | |
| runner: ${{ matrix.os }} | |
| bottles-directory: ${{ github.workspace }} | |
| logs-directory: ${{ format('{0}/logs', github.workspace) }} | |
| upload-bottles: ${{ github.event_name == 'pull_request' }} |