mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
17 lines
372 B
YAML
17 lines
372 B
YAML
---
|
|
name: Rubocop
|
|
on: workflow_call
|
|
jobs:
|
|
rubocop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Rubocop
|
|
uses: satmandu/Octocop@v0.0.3
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
reporter: github-pr-check
|
|
rubocop_flags: "-l -c .rubocop.yml"
|