An open API service indexing awesome lists of open source software.

https://github.com/psychollama/vader-action

Test your vim plugin with vader
https://github.com/psychollama/vader-action

github-action testing vader vim

Last synced: 29 days ago
JSON representation

Test your vim plugin with vader

Awesome Lists containing this project

README

          


vader-action


Test your vim plugin with vader.


## Usage
Basic:
```yml
- uses: PsychoLlama/vader-action@v1
```

Overriding the test glob:
```yml
- uses: PsychoLlama/vader-action@v1
with:
# Default: runs all files with the `.vader` extension.
test-pattern: '**/*.vader'
```

Running tests with neovim:
```yml
- uses: PsychoLlama/vader-action@v1
with:
# Note: neovim must be installed before enabling this feature.
# Installation is easy with the excellent `rhysd/action-setup-vim` action.
neovim: true
```

Registering extra plugins:
```yml
- uses: PsychoLlama/vader-action@v1
with:
# Default: the current repository.
plugins: 'path/to/plugin,other-plugins/*.vim'
```