Skip to content

Commit c8feadb

Browse files
Add new test facility leveraging latest Vader
1 parent fc230ca commit c8feadb

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,15 @@ jobs:
99
- name: Run tests
1010
run: cd test && ./run-tests
1111
shell: bash
12+
test-new:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install Vim
18+
run: sudo apt-get install vim
19+
20+
- name: Test
21+
run: |
22+
git clone https://github.com/junegunn/vader.vim.git
23+
vim --clean -Es -Nu ./test/new-vimrc -c 'Vader! test/*'

test/new-vimrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
set rtp+=vader.vim
2+
set rtp+=.
3+
4+
filetype plugin indent on
5+
syntax on

0 commit comments

Comments
 (0)