mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-12-06 12:14:24 +08:00
Currently, the CI throws: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. So update vim-flavor to 4.0.1 which uses https:// links instead of un-authenticated git protocol. Unfortunately, we have to update ruby to version 3.0 with that. Let's see if this works.
44 lines
753 B
YAML
44 lines
753 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
vim:
|
|
- v8.2.1000
|
|
- v8.2.0000
|
|
- v8.1.0000
|
|
- v8.0.0000
|
|
- v7.4
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Checkout vim-themis
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: thinca/vim-themis
|
|
path: vim-themis
|
|
|
|
- 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
|