I broke up with neovim....vim is my best friend now
This commit is contained in:
39
dot_vim/plugged/vim-lsp-settings/dot_github/workflows/ci.yml
Normal file
39
dot_vim/plugged/vim-lsp-settings/dot_github/workflows/ci.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
name: ci
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
version: [stable, nightly]
|
||||
vim_type: ['Vim', 'Neovim']
|
||||
include:
|
||||
- vim_type: 'Vim'
|
||||
neovim: false
|
||||
- vim_type: 'Neovim'
|
||||
neovim: true
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- id: vim
|
||||
uses: rhysd/action-setup-vim@v1
|
||||
with:
|
||||
version: ${{ matrix.version }}
|
||||
neovim: ${{ matrix.neovim }}
|
||||
- name: 'Setup vim-themis'
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: thinca/vim-themis
|
||||
path: vim-themis
|
||||
- name: Run tests
|
||||
env:
|
||||
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
|
||||
run: |
|
||||
./vim-themis/bin/themis ./test
|
||||
@@ -0,0 +1,35 @@
|
||||
name: reviewdog
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
vimlint:
|
||||
name: runner / vint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: vint
|
||||
uses: reviewdog/action-vint@v1
|
||||
with:
|
||||
github_token: ${{ secrets.github_token }}
|
||||
level: error
|
||||
reporter: github-pr-review
|
||||
shellcheck:
|
||||
name: runner / shellcheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: shellcheck
|
||||
uses: reviewdog/action-shellcheck@v1
|
||||
with:
|
||||
github_token: ${{ secrets.github_token }}
|
||||
reporter: github-pr-review
|
||||
path: "."
|
||||
pattern: "*.sh"
|
||||
exclude: "./.git/*"
|
||||
Reference in New Issue
Block a user