Skip to content

Set up GitHub Actions #2

Set up GitHub Actions

Set up GitHub Actions #2

Workflow file for this run

---
name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Vim
run: sudo apt-get install vim
- name: Test
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git clone https://github.com/junegunn/vader.vim.git
git clone https://github.com/junegunn/seoul256.vim.git
vim -Nu <(cat << VIMRC
set rtp+=vader.vim
set rtp+=.
VIMRC) -c 'silent Vader! test/*' > /dev/null