Skip to content

Commit

Permalink
chore: update vim and neovim versions for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lervag committed Apr 21, 2024
1 parent fa7dcd4 commit 9f6a5bb
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,33 @@ jobs:
steps:
- name: Install packages
run: |
sudo add-apt-repository ppa:neovim-ppa/stable
sudo apt update
sudo apt install \
vim neovim moreutils gcc \
moreutils \
texlive texlive-latex-extra texlive-extra-utils \
texlive-bibtex-extra libtext-bibtex-perl \
texlive-publishers \
latexmk \
libmodule-build-perl \
libconfig-autoconf-perl \
libextutils-libbuilder-perl
- uses: jdx/mise-action@v2
with:
tool_versions: |
neovim 0.9.5
vim 9.1.0
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Test with neovim
run: cd test && make -j1
working-directory: ./test
run: |
mise use neovim
make -j1
- name: Test with vim
env:
MYVIM: vim -T dumb --not-a-term -n
run: cd test && make -j1
working-directory: ./test
run: |
mise use vim
make -j1

0 comments on commit 9f6a5bb

Please sign in to comment.