Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump CI checkout to latest #516

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
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
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
Loading