test rails72 #102
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: | |
name: Pronto lint | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_ONLY: lint | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git fetch --no-tags --prune --unshallow origin +refs/heads/*:refs/remotes/origin/* | |
- name: Install ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- run: bundle exec pronto run -f text github_pr_review -c origin/master | |
env: | |
PRONTO_GITHUB_ACCESS_TOKEN: ${{ github.token }} | |
PRONTO_PULL_REQUEST_ID: ${{ github.event.pull_request.number }} |