Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MunifTanjim/setup-neovim-action
🚀 Setup Neovim on Github Actions.
https://github.com/MunifTanjim/setup-neovim-action
gitub-actions neovim
Last synced: 3 months ago
JSON representation
🚀 Setup Neovim on Github Actions.
- Host: GitHub
- URL: https://github.com/MunifTanjim/setup-neovim-action
- Owner: MunifTanjim
- License: mit
- Created: 2021-12-03T13:23:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T15:11:25.000Z (over 2 years ago)
- Last Synced: 2024-07-22T13:00:00.539Z (4 months ago)
- Topics: gitub-actions, neovim
- Language: Shell
- Homepage: https://github.com/marketplace/actions/setup-neovim
- Size: 5.86 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Neovim - GitHub Action
Setup Neovim on Github Actions.
## Usage
See [action.yml](./action.yml)
**Basic (stable release):**
```yml
steps:
- uses: actions/checkout@v2
- uses: MunifTanjim/setup-neovim-action@v1
- run: |
nvim --version
```**Specific Tag:**
```yml
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:**
```yml
steps:
- uses: actions/checkout@v2
- uses: MunifTanjim/setup-neovim-action@v1
with:
tag: source
- run: |
nvim --version
```## License
Licensed under the MIT License. Check the [LICENSE](./LICENSE) file for details.