mirror of
https://github.com/junegunn/limelight.vim.git
synced 2025-11-18 07:53:38 -05:00
34 lines
747 B
YAML
34 lines
747 B
YAML
---
|
|
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+=seoul256.vim
|
|
set rtp+=.
|
|
VIMRC) -c 'silent Vader! test/*' > /dev/null
|