avoid deprecated health api #122
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Unit tests | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
neovim: [true, false] | |
version: [stable, nightly] | |
# Exclude Neovim nightly since Neovim's release workflow is fairly unstable: https://github.com/neovim/neovim/actions/workflows/release.yml | |
exclude: | |
- neovim: true | |
version: nightly | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Git user for running Git commands in unit tests | |
run: | | |
git config --global user.email "users@noreply.github.com" | |
git config --global user.name "github-action" | |
- name: Fetch Git history for unit tests | |
run: git fetch --no-tags --prune --unshallow | |
- name: Checkout themis.vim | |
uses: actions/checkout@v2 | |
with: | |
repository: thinca/vim-themis | |
path: vim-themis | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
version: ${{ matrix.version }} | |
neovim: ${{ matrix.neovim }} | |
- name: Run unit tests | |
env: | |
THEMIS_VIM: ${{ steps.vim.outputs.executable }} | |
THEMIS_PROFILE: profile.txt | |
run: ./vim-themis/bin/themis ./test/all.vimspec | |
- uses: actions/setup-python@v1 | |
- name: Report coverage | |
run: | | |
# https://github.com/Vimjas/covimerage/issues/95 | |
pip install 'click<8.0.0' | |
pip install covimerage | |
covimerage write_coverage profile.txt | |
coverage report | |
coverage xml | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-windows: | |
name: Unit tests on Windows | |
strategy: | |
matrix: | |
neovim: [true, false] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Git user for running Git commands in unit tests | |
run: | | |
git config --global user.email "users@noreply.github.com" | |
git config --global user.name "github-action" | |
- name: Fetch Git history for unit tests | |
run: git fetch --no-tags --prune --unshallow | |
- name: Checkout themis.vim | |
uses: actions/checkout@v2 | |
with: | |
repository: thinca/vim-themis | |
path: vim-themis | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
version: stable | |
neovim: ${{ matrix.neovim }} | |
- name: Run unit tests | |
env: | |
THEMIS_VIM: ${{ steps.vim.outputs.executable }} | |
run: ./vim-themis/bin/themis ./test/all.vimspec | |
vint: | |
name: Run vint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
- run: pip install vim-vint | |
- run: vint --warning --verbose --enable-neovim ./autoload ./plugin |