90619ab253
subrepo: subdir: "dotfiles/.vim/plugged/lightline.vim" merged: "b1e91b41" upstream: origin: "https://github.com/itchyny/lightline.vim.git" branch: "master" commit: "b1e91b41" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
39 lines
757 B
YAML
39 lines
757 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
vim:
|
|
- v9.0.0000
|
|
- v8.2.0000
|
|
- v8.1.0000
|
|
- v8.0.0000
|
|
- v7.4
|
|
- v7.3
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Checkout vim-themis
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: thinca/vim-themis
|
|
path: vim-themis
|
|
ref: v1.6.0
|
|
- name: Setup Vim
|
|
uses: rhysd/action-setup-vim@v1
|
|
id: vim
|
|
with:
|
|
version: ${{ matrix.vim }}
|
|
- name: Test
|
|
env:
|
|
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
|
|
run: ./vim-themis/bin/themis --reporter spec
|