Merge pull request #151 from github/dependabot/bundler/prod-ruby-depe… #361
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: lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@a4effe49ee8ee5b8b5091268c473a4628afb5651 # [email protected] | |
| with: | |
| bundler-cache: true | |
| - name: bootstrap | |
| run: script/bootstrap | |
| - name: rubocop | |
| run: bundle exec rubocop -c .rubocop.yml lib/ spec/ |