We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc230ca commit c8feadbCopy full SHA for c8feadb
.github/workflows/ci.yml
@@ -9,3 +9,15 @@ jobs:
9
- name: Run tests
10
run: cd test && ./run-tests
11
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
@@ -0,0 +1,5 @@
1
+set rtp+=vader.vim
2
+set rtp+=.
3
4
+filetype plugin indent on
5
+syntax on
0 commit comments