chore(deps): bump actions/checkout from 6 to 7 #250
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] | ||
| 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 19 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 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 33 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| brew update | ||
| HOMEBREW_DEVELOPER=1 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 48 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 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 62 in .github/workflows/test.yml
|
||
| run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 brew install Formula/ting.rb | ||
| ting --help | ||
| clavy: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 brew install Formula/clavy.rb | ||
| clavy --help | ||
| clavy-head: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| brew update | ||
| HOMEBREW_DEVELOPER=1 brew install Formula/clavy.rb --HEAD | ||
| clavy --help | ||
| ouverture: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 brew install Formula/ouverture.rb | ||
| ovt | ||
| casks: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - uses: actions/checkout@v7 | ||
| - name: Test install | ||
| run: | | ||
| HOMEBREW_DEVELOPER=1 brew install Casks/*.rb | ||