docs: remove info about bg support as neovim/neovim#26307 is merged #631
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install luacheck | |
run: | | |
sudo apt-get update | |
sudo apt-get install lua-check | |
- name: lint | |
run: make lint |