Release v3.5.0 #219
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: Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.0 | |
bundler-cache: true | |
- name: Run linters with autofix | |
run: bundle exec rubocop --auto-correct-all | |
- name: Push any fixes | |
run: | | |
git config --global user.email "lint-bot" | |
git config --global user.name "lint-bot" | |
git add --all | |
git commit -m "Code style fixes" || exit 0 | |
git push | |
- name: Re-run linter | |
run: bundle exec rubocop |