Files
chromebrew/.github/workflows/Rubocop.yml
Maximilian Downey Twiss 41a708c1c5 Refactor workflow files (#8355)
* Refactor workflow files

* Fix YAMLlint errors
2023-06-13 23:42:56 -04:00

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"