Skip to content

Use mise to install Neovim in CI #190

Use mise to install Neovim in CI

Use mise to install Neovim in CI #190

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare dependencies
uses: jdx/mise-action@v2
- name: Run tests
run: |
export PATH="${PWD}/_neovim/bin:${PATH}"
nvim --version
make test