fix: make <c-;> work again (#2073) #1800
This file contains hidden or 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: integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup neovim | |
| uses: rhysd/action-setup-vim@v1 | |
| with: | |
| version: nightly | |
| neovim: true | |
| - name: Setup lua | |
| uses: leafo/gh-actions-lua@v10 | |
| with: | |
| luaVersion: "luajit-openresty" | |
| - name: Setup luarocks | |
| uses: leafo/gh-actions-luarocks@v4 | |
| - name: Setup tools | |
| shell: bash | |
| run: | | |
| luarocks install luacheck | |
| luarocks install vusted | |
| - name: Run tests | |
| shell: bash | |
| run: make integration |