Prevent sign up if not verified #35
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: "[CI] Lint" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
RUBY_VERSION: 3.0.6 | |
jobs: | |
lint-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
bundler-cache: true | |
- name: Lint and Rubocop | |
run: | | |
bundle exec rubocop -P | |
bundle exec erblint app/**/*.erb |