docs: Update CHANGELOG #1297
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: 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 |