Fixing regex to be able to detect versions correctly for Huawei VRP (… #456
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: Rubocop | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_ONLY: rubocop | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Run Rubocop | |
| run: bundle exec rubocop --parallel --format simple |