apisix/.github/workflows/lint.yml
罗泽轩 e4fd1cb198
ci: move license & plugin style check to separate job (#4211)
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
2021-05-11 19:41:30 +08:00

34 lines
924 B
YAML

name: ❄️ Lint
on: [pull_request]
jobs:
trailing-whitespace:
name: 🌌 Trailing whitespace
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 🧹 Check for trailing whitespace
run: "! git grep -EIn $'[ \t]+$'"
misc:
name: misc checker
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v2
- name: Install
run: |
wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
run: |
git ls-files | grep -v "docs/es" | grep -v "t/toolkit" | xargs ./misspell -error
- name: Merge conflict
run: |
grep "^<<<<<<< HEAD" $(git ls-files | grep -v "t/toolkit" | xargs) && exit 1 || true
- name: License
run: |
make license-check
- name: Plugin Code
run: |
sudo bash ./utils/check-plugins-code.sh