bump to 0.1.2 and test on all supported matrix of chip architectures and os systems #6
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: Homebrew Install | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: homebrew-install-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Homebrew Install | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| runner-image: | |
| - ubuntu-latest | |
| - macos-15 | |
| runs-on: ${{ matrix.runner-image }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Homebrew | |
| id: set-up-homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Homebrew Install Dify | |
| run: brew install ./dify.rb | |
| - name: Homebrew Test Dify | |
| run: brew test dify |