Setup Neovim on Github Actions.
See action.yml
Basic (stable release):
steps:
- uses: actions/checkout@v2
- uses: MunifTanjim/setup-neovim-action@v1
- run: |
nvim --version
Specific Tag:
steps:
- uses: actions/checkout@v2
- uses: MunifTanjim/setup-neovim-action@v1
with:
tag: nightly
- run: |
nvim --version
For list of available tags, check: https://github.com/neovim/neovim/tags
Compile from Source:
steps:
- uses: actions/checkout@v2
- uses: MunifTanjim/setup-neovim-action@v1
with:
tag: source
- run: |
nvim --version
Licensed under the MIT License. Check the LICENSE file for details.