fix(documentstore): hide virtual bufs and dont prompt for saving #29
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: Test | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
nvim-versions: ['stable', 'nightly'] | |
os: [ubuntu-latest, macos-latest] | |
# TODO:add windows tests back in when we implement path normalisation | |
# os: [ubuntu-latest, windows-latest, macos-latest] | |
fail-fast: false | |
name: Plenary Tests | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.nvim-versions }} | |
- name: run tests | |
run: make test |