mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Adjust ruby buildsystem to use Gem::Version.new to sanitize gem version numbers, adjust activesupport package dependencies. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Have linting workflows fail on warning. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Lint now that we know the checks fail appropriately when they are tripped. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
18 lines
383 B
YAML
18 lines
383 B
YAML
---
|
|
name: YAMLLint
|
|
on: workflow_call
|
|
jobs:
|
|
yamllint:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: YAMLLint
|
|
uses: reviewdog/action-yamllint@v1
|
|
with:
|
|
fail_on_error: true
|
|
reporter: github-pr-check
|
|
reviewdog_flags: '-fail-level=any'
|