From fc230cac818a74391907a1bcab427dc504abbdfc Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Sun, 2 Jun 2024 16:37:11 -0400 Subject: [PATCH 1/2] Bump CI to run on PRs --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd6e2265..00f1b413 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,11 @@ -on: push +on: + - push + - pull_request jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run tests run: cd test && ./run-tests shell: bash From dd21f78897f325ea75b9ec6191fe893fe75df18f Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Sun, 2 Jun 2024 16:50:40 -0400 Subject: [PATCH 2/2] Add new test facility leveraging latest Vader --- .github/workflows/ci.yml | 12 ++++++++++++ test/new-vimrc | 17 +++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 test/new-vimrc diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00f1b413..40e11fb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/*' diff --git a/test/new-vimrc b/test/new-vimrc new file mode 100644 index 00000000..fad3d005 --- /dev/null +++ b/test/new-vimrc @@ -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