Update FUNDING.yml #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
tests-nvim: | |
name: Test (neovim) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Neovim | |
run: | | |
sudo apt-get update | |
sudo apt install libfuse2 | |
wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
chmod u+x nvim.appimage | |
sudo mv nvim.appimage /usr/bin/nvim | |
- name: Setup | |
run: make setup | |
- name: Execute tests | |
run: make test EXTRA_OPTIONS='--headless' | |
tests-vim: | |
name: Test (vim) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Vim | |
run: | | |
sudo apt-get update | |
sudo apt-get install vim | |
- name: Setup | |
run: make setup | |
- name: Execute tests | |
run: make test VIM_BIN=vim |