dotfiles/.github/workflows/neovim-nightly-test.yml

32 lines
796 B
YAML
Raw Normal View History

2022-04-28 15:09:41 +00:00
name: Neovim Nightly compatibility test
on:
schedule:
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
bootstrap-and-check-nightly:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Run bootstrap
run: make bootstrap
env:
DOTFILES_CI: 1
- name: Install neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: Install packer
2022-04-28 15:25:26 +00:00
run: git clone https://github.com/wbthomason/packer.nvim $HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
2022-04-28 15:09:41 +00:00
- name: Run neovim checks
run: make check_neovim
env:
DOTFILES_CI: 1