adding functionality to sync line / sync all and updating keymap options to be more configurable in different modes #115
Workflow file for this run
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: Integration | |
on: | |
push: | |
branches: [ main, alpha ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nvim-versions: ['stable', 'nightly'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.nvim-versions }} | |
- name: Setup ‘lua’ | |
uses: leafo/gh-actions-lua@v8 | |
with: | |
luaVersion: "5.1.5" | |
- name: Setup ‘luarocks’ | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install dependencies | |
run: | | |
make -C ./test prepare | |
- name: Run linter | |
run: luacheck lua/ test/spec/ | |
- name: Run tests | |
run: make -C ./test test |