mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2026-02-06 05:47:39 +08:00
35 lines
628 B
YAML
35 lines
628 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
vim:
|
|
- v8.2.1000
|
|
- v8.2.0000
|
|
- v8.1.0000
|
|
- v8.0.0000
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@main
|
|
with:
|
|
repository: thinca/vim-themis
|
|
path: vim-themis
|
|
|
|
- name: Setup Vim
|
|
uses: rhysd/action-setup-vim@v1
|
|
with:
|
|
version: ${{ matrix.vim }}
|
|
|
|
- name: Run Test
|
|
env:
|
|
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
|
|
run: ./vim-themis/bin/themis --reporter spec
|