diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-01-01 07:15:50 +0900 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-12-31 14:15:50 -0800 |
| commit | 10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15 (patch) | |
| tree | 7eef1897eafc3607927b2006715e4e56b3ecd843 /.github/workflows/lint.yml | |
| parent | [docgen] Update README.md (diff) | |
| download | nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar.gz nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar.bz2 nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar.lz nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar.xz nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.tar.zst nvim-lspconfig-10d3a9bde1d72bd3dfdbffbc317ef6b36ff9dd15.zip | |
CI: luacheck #86
Diffstat (limited to '.github/workflows/lint.yml')
| -rw-r--r-- | .github/workflows/lint.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..fad473da --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,22 @@ +name: lint + +on: + pull_request: + branches: + - master + +jobs: + lint: + runs-on: [ubuntu-latest] + steps: + - name: Checkout sources + uses: actions/checkout@v1 + - name: Setup luacheck + run: | + sudo apt update && + sudo apt install -y lua5.1 luarocks && + sudo luarocks install luacheck + - name: Run luacheck + run: | + luacheck . + |
