]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/vim-markdown/.github/workflows/vader.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / vim-markdown / .github / workflows / vader.yml
1 name: Vader
2 on: [push, pull_request]
3 jobs:
4   vader:
5     name: vader
6     runs-on: ubuntu-latest
7     strategy:
8       fail-fast: false
9       matrix:
10         vimFlavor: ["vim", "nvim"]
11     steps:
12     - name: Checkout
13       uses: actions/checkout@v2
14     - name: Enable Universe package repository
15       run: |
16         sudo add-apt-repository universe
17         sudo apt-get update
18     - name: Install ${{ matrix.vimFlavor }}
19       run: |
20         sudo apt-get install ${{ matrix.vimFlavor == 'nvim' && 'neovim' || 'vim' }}
21     - name: Review versions
22       run: |
23         ${{ matrix.vimFlavor }} --version
24     - name: Fetch Vader and other dependencies
25       run: |
26         make build/tabular build/vim-toml build/vim-json build/vader.vim
27     - name: Run test suite
28       run: |
29         cd test
30         ${{ matrix.vimFlavor == 'nvim' && 'nvim --headless' || 'vim -N' }} \
31           -u vimrc "+Vader! *"