Skip to content

Commit

Permalink
Add new test facility leveraging latest Vader
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Simulacrum committed Jun 2, 2024
1 parent fc230ca commit dd21f78
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,15 @@ jobs:
- name: Run tests
run: cd test && ./run-tests
shell: bash
test-new:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Vim
run: sudo apt-get install vim

- name: Test
run: |
git clone https://github.com/junegunn/vader.vim.git
vim -Es -Nu ./test/new-vimrc -c 'Vader! test/*'
17 changes: 17 additions & 0 deletions test/new-vimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
set rtp+=vader.vim
set rtp+=.

filetype plugin indent on
syntax on

set nocompatible
set tabstop=8
set softtabstop=4
set shiftwidth=4
set expandtab
set backspace=2
set nofoldenable
set foldmethod=syntax
set foldlevelstart=10
set foldnestmax=10
set ttimeoutlen=0

0 comments on commit dd21f78

Please sign in to comment.