diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..0b47b35 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 diff --git a/README.md b/README.md index ee25ee6..f72ae22 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@

-and in this corner... +and in this corner...

-# vim match-up +

+ vim match-up :fist_right::fist_left: +

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 diff --git a/test/new/Makefile b/test/new/Makefile index 46bb034..9ad87bd 100644 --- a/test/new/Makefile +++ b/test/new/Makefile @@ -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