Add openbolt support #9
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: Check if casks are up-to-date | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check_casks: | |
| name: Check casks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.3' | |
| bundler-cache: true | |
| - name: Update openvox8-agent cask | |
| run: bundle exec rake 'brew:cask[agent,8]' | |
| - name: Check if openvox8-agent is up-to-date | |
| run: git diff --exit-code | |
| - name: Update openvox8-openbolt cask | |
| run: bundle exec rake 'brew:cask[openbolt,8]' | |
| - name: Check if openvox8-openbolt is up-to-date | |
| run: git diff --exit-code |