mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 09:40:04 +08:00
18 lines
393 B
YAML
18 lines
393 B
YAML
|
name: Detach Plugins
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
detachPlugin: ["flygrep", "dein-ui", "vim-todo", "iedit", "scrollbar.vim"]
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@master
|
||
|
- name: Detach ${{ matrix.detachPlugin }}
|
||
|
run: |
|
||
|
.ci/detach_plugin.sh ${{ matrix.detachPlugin }}
|