Update issue templates #45
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: Verify Rails Backend | |
on: [push, pull_request] | |
jobs: | |
linters: | |
name: Rubocop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Ruby and gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: backend | |
bundler-cache: true | |
- name: Run lint | |
run: | | |
cd backend | |
bundle exec rubocop --parallel |