nvim-treesitter/.github/workflows/lint.yml
dundargoc 3041e32701
ci: mark automated PRs as draft (#2413)
The required checks can be initiated by marking the PR as ready for
review.
2022-02-01 09:08:45 +01:00

34 lines
729 B
YAML

name: Linting and style checking
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
luacheck:
name: Luacheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
sudo apt-get update
sudo add-apt-repository universe
sudo apt install luarocks -y
sudo luarocks install luacheck
- name: Run Luacheck
run: luacheck .
stylua:
name: StyLua
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint with stylua
uses: JohnnyMorganz/stylua-action@1.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --check .