diff options
| -rw-r--r-- | .github/workflows/lint.yml | 20 | ||||
| -rw-r--r-- | .travis.yml | 11 | ||||
| -rw-r--r-- | README.md | 2 |
3 files changed, 21 insertions, 12 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 000000000..41ee77272 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,20 @@ +name: Linting and style checking + +on: [push, pull_request] + +jobs: + luacheck: + name: Luacheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - 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: ./scripts/style-check.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a3d4dfe86..000000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ - -language: c -dist: bionic -before_install: - - sudo apt-get update - - sudo add-apt-repository universe - - sudo apt install luarocks -y - - sudo luarocks install luacheck - -script: - - ./scripts/style-check.sh @@ -2,7 +2,7 @@ Traditionnal highlighting (left) vs Treesitter-based highlighting (right). [](https://gitter.im/nvim-treesitter/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -[](https://travis-ci.com/nvim-treesitter/nvim-treesitter) + # nvim-treesitter Treesitter configurations and abstraction layer for Neovim. |
