Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lervag committed Apr 21, 2024
1 parent 52ff9fc commit b50e3ed
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
name: Test on ubuntu-latest
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
defaults:
run:
working-directory: ./test
steps:
- name: Install packages
run: |
Expand All @@ -43,8 +46,12 @@ jobs:
with:
fetch-depth: 1
- name: Test with neovim
run: cd test && make -j1
run: |
mise use neovim
make -j1
- name: Test with vim
env:
MYVIM: vim -T dumb --not-a-term -n
run: cd test && make -j1
run: |
mise use vim
make -j1

0 comments on commit b50e3ed

Please sign in to comment.