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
- Host: GitHub
- URL: https://github.com/psychollama/vader-action
- Owner: PsychoLlama
- License: mit
- Created: 2020-12-09T10:05:05.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-05T20:29:36.000Z (about 5 years ago)
- Last Synced: 2026-05-13T15:08:53.528Z (about 1 month ago)
- Topics: github-action, testing, vader, vim
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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'
```