Skip to content

Init module (#11)

Init module (#11) #5

Workflow file for this run

name: "[CI] Lint"
on:
push:
branches:
- main
pull_request:
env:
RUBY_VERSION: 3.0.2
jobs:
lint-report:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- run: bundle exec rubocop -P
name: Lint Ruby files
# - run: bundle exec erblint app/**/*.erb
# name: Lint ERB files
- run: bundle exec mdl *.md
name: Lint Markdown files