Load the plans form scripts for non-logged in users as well #163
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, pull_request] | |
env: | |
CI: "true" | |
CODECOV: "true" | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: rokroskar/[email protected] | |
if: "github.ref != 'refs/heads/develop'" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run Rubocop | |
run: bundle exec rubocop -P |