mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
36 lines
766 B
YAML
36 lines
766 B
YAML
name: reviewdog
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
vimlint:
|
|
name: runner / vint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: vint
|
|
uses: reviewdog/action-vint@v1
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
level: error
|
|
reporter: github-pr-review
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
reporter: github-pr-review
|
|
path: "."
|
|
pattern: "*.sh"
|
|
exclude: "./.git/*"
|