Skip to content

Commit dc1e7b4

Browse files
committed
Revert "Remove GitHub-related stuff"
This reverts commit 5cf2bd1.
1 parent 5cf2bd1 commit dc1e7b4

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/vader.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Fugitive GitLab
2+
on: [push, pull_request]
3+
jobs:
4+
Vader:
5+
strategy:
6+
matrix:
7+
vim:
8+
- package: vim
9+
bin: vim
10+
- package: neovim
11+
bin: nvim
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Git clone Vader
15+
uses: actions/checkout@v2
16+
with:
17+
repository: junegunn/vader.vim
18+
path: vader.vim
19+
- name: Git clone Fugitive
20+
uses: actions/checkout@v2
21+
with:
22+
repository: tpope/vim-fugitive
23+
path: vim-fugitive
24+
- name: Check out repository code
25+
uses: actions/checkout@v2
26+
with:
27+
path: fugitive-gitlab.vim
28+
- name: Install packages
29+
run: sudo apt-get install -y ${{ matrix.vim.package }} curl
30+
- name: Run vader against ${{ matrix.vim.package }}
31+
run: ${{ matrix.vim.bin }} -Es -Nu fugitive-gitlab.vim/test/vimrc -c "Vader! fugitive-gitlab.vim/test/*" 2>&1

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# fugitive-cgit.vim
22

3+
[![Fugitive cgit](https://github.com/sudotac/fugitive-cgit.vim/actions/workflows/vader.yml/badge.svg?branch=master)](https://github.com/sudotac/fugitive-cgit.vim/actions/workflows/vader.yml)
4+
35
[fugitive.vim][] is undoubtedly the best Git wrapper of all time.
46

57
This plugin allows you to use it with a cgit instance.

0 commit comments

Comments
 (0)