This repository was archived by the owner on Oct 16, 2025. It is now read-only.
ruby ver / code build #437
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] | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repo | |
| - uses: actions/checkout@v3 | |
| - name: 'remove .bundle/config' | |
| run: rm .bundle/config | |
| working-directory: mysql-ruby-lambda | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| working-directory: mysql-ruby-lambda | |
| - name: 'Run Rubocop' | |
| run: bundle exec rubocop | |
| working-directory: mysql-ruby-lambda | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| working-directory: src-common | |
| - name: 'Run Rubocop' | |
| run: bundle exec rubocop | |
| working-directory: src-common | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| working-directory: src-admintool | |
| - name: 'Run Rubocop' | |
| run: bundle exec rubocop | |
| working-directory: src-admintool | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| working-directory: src-colladmin | |
| - name: 'Run Rubocop' | |
| run: bundle exec rubocop | |
| working-directory: src-colladmin | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| working-directory: src-testdriver | |
| - name: 'Run Rubocop' | |
| run: bundle exec rubocop | |
| working-directory: src-testdriver |