-
-
Notifications
You must be signed in to change notification settings - Fork 35
50 lines (50 loc) · 1.39 KB
/
vim_neovim.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: vim/neovim
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
#os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
neovim: [false, true]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Clone themis.vim
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: .vim-themis
- name: Clone vim-sexp
uses: actions/checkout@v4
with:
repository: guns/vim-sexp
path: .vim-sexp
- uses: rhysd/action-setup-vim@v1
id: vim
with:
version: nightly
neovim: ${{ matrix.neovim }}
- run: echo "./bin" >> $GITHUB_PATH
- name: Install cljstyle
run: ../installer/cljstyle.sh
working-directory: ./bin
- name: Install jet
run: ../installer/jet.sh
working-directory: ./bin
- name: Install clj-kondo
run: ../installer/clj-kondo.sh
working-directory: ./bin
- name: Run themis
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: ./.vim-themis/bin/themis
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
pip install -r requirements.txt
bash scripts/coverage.sh