patch(deps): update dependency rubocop to v1.72.2 #281
Workflow file for this run
This file contains 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: general | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install generator | |
run: npm install @openapitools/openapi-generator-cli -g | |
- name: Install dependencies | |
run: bundle install | |
- name: Run generate | |
run: bash hack/generate-client.sh | |
- name: Run rubocop | |
run: bundle exec rake rubocop | |
- name: Run rspec | |
run: bundle exec rake spec | |
... |