Skip to content

MunifTanjim/setup-neovim-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Setup Neovim - GitHub Action

Setup Neovim on Github Actions.

Usage

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

License

Licensed under the MIT License. Check the LICENSE file for details.