fix(ui): don't disable search mode if empty pattern and last-pattern … #2329
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: Tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
nvim_version: | |
- v0.7.0 | |
- v0.7.2 | |
- v0.8.0 | |
- v0.8.1 | |
- v0.8.2 | |
- v0.8.3 | |
- v0.9.0 | |
- v0.9.1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.nvim_version }} | |
- name: Run tests | |
run: | | |
set -e | |
make test | |
nvim -u NONE -E -R --headless +'helptags doc' +q |