chore(deps): bump actions/checkout from 6 to 7 #244
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
| # This is a basic workflow to help you get started with Actions | ||
| name: test-install | ||
| on: | ||
| push: | ||
| branches: [master] | ||
| pull_request: | ||
| branches: [master] | ||
| env: | ||
| HOMEBREW_DEVELOPER: 1 | ||
| jobs: | ||
| pacaptr: | ||
| strategy: | ||
| matrix: | ||
| os: [macos-latest, ubuntu-latest] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - if: startsWith(${{ matrix.os }}, "ubuntu") | ||
|
Check warning on line 22 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| brew install Formula/pacaptr.rb | ||
| pacaptr --help | ||
| pacaptr-head: | ||
| strategy: | ||
| matrix: | ||
| os: [macos-latest, ubuntu-latest] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - if: startsWith(${{ matrix.os }}, "ubuntu") | ||
|
Check warning on line 36 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER= brew update | ||
| brew install Formula/pacaptr.rb --HEAD | ||
| pacaptr --help | ||
| alire: | ||
| strategy: | ||
| matrix: | ||
| os: [macos-latest, ubuntu-latest] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - if: startsWith(${{ matrix.os }}, "ubuntu") | ||
|
Check warning on line 51 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| brew install Formula/alire.rb | ||
| alr help | grep USAGE | ||
| ting: | ||
| strategy: | ||
| matrix: | ||
| os: [macos-latest, ubuntu-latest] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - if: startsWith(${{ matrix.os }}, "ubuntu") | ||
|
Check warning on line 65 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| brew install Formula/ting.rb | ||
| ting --help | ||
| clavy: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| brew install Formula/clavy.rb | ||
| clavy --help | ||
| clavy-head: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER= brew update | ||
| brew install Formula/clavy.rb --HEAD | ||
| clavy --help | ||
| ouverture: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| brew install Formula/ouverture.rb | ||
| ovt | ||
| casks: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| brew install Casks/*.rb | ||