Setup Neovim on Github Actions.
See action.yml
Basic (stable release):
steps:
  - uses: actions/checkout@v2
  - uses: MunifTanjim/setup-neovim-action@v1
  - run: |
      nvim --versionSpecific Tag:
steps:
  - uses: actions/checkout@v2
  - uses: MunifTanjim/setup-neovim-action@v1
    with:
      tag: nightly
  - run: |
      nvim --versionFor 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 --versionLicensed under the MIT License. Check the LICENSE file for details.