mirror of
https://github.com/chenasraf/vim-matchup.git
synced 2026-05-17 17:38:01 +00:00
Add gitlab ci for coverage
Fix gitlab ci Add correct env to gitlab ci
This commit is contained in:
32
.gitlab-ci.yml
Normal file
32
.gitlab-ci.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
stages:
|
||||
- test
|
||||
|
||||
before_script:
|
||||
- apk update; apk add git bash make
|
||||
|
||||
test-latest:
|
||||
stage: test
|
||||
image:
|
||||
name: thinca/vim:latest-full
|
||||
entrypoint: [""]
|
||||
environment:
|
||||
MYVIM: vim -T dumb --not-a-term -n
|
||||
script: cd ./test/new && make -j1 && make -j1 coverage
|
||||
|
||||
test-8.0.1575:
|
||||
stage: test
|
||||
image:
|
||||
name: thinca/vim:v8.0.1575-full
|
||||
entrypoint: [""]
|
||||
environment:
|
||||
MYVIM: vim -T dumb --not-a-term -n
|
||||
script: cd ./test/new && make -j1 && make -j1 coverage
|
||||
|
||||
test-7.4.2273:
|
||||
stage: test
|
||||
image:
|
||||
name: thinca/vim:v7.4.2273-full
|
||||
entrypoint: [""]
|
||||
environment:
|
||||
MYVIM: vim -T dumb --not-a-term -n
|
||||
script: cd ./test/new && make -j1 && make -j1 coverage
|
||||
@@ -1,10 +1,12 @@
|
||||
<div align="center">
|
||||
<p>
|
||||
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='300px' alt='and in this corner...' />
|
||||
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='250px' alt='and in this corner...' />
|
||||
</p>
|
||||
</div>
|
||||
|
||||
# vim match-up
|
||||
<h1 align="center">
|
||||
vim match-up :fist_right::fist_left:
|
||||
</h1>
|
||||
|
||||
match-up is a plugin that lets you highlight, navigate, and operate on
|
||||
sets of matching text. It extends vim's `%` key to language-specific
|
||||
|
||||
@@ -23,6 +23,7 @@ htmlcov/index.html: env /tmp/vim-profile.txt
|
||||
covimerage write_coverage /tmp/vim-profile.txt --source ../../autoload --source ../../plugin
|
||||
coverage report -m
|
||||
coverage html
|
||||
coverage xml
|
||||
|
||||
env: env/pyvenv.cfg
|
||||
|
||||
|
||||
Reference in New Issue
Block a user