]> git.madduck.net Git - etc/vim.git/blob - .github/workflows/linux_neovim.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:

Squashed '.vim/bundle/asyncomplete/' content from commit 016590d2
[etc/vim.git] / .github / workflows / linux_neovim.yml
1 name: linux_neovim
2
3 on:
4   push:
5     branches:
6       - master
7   pull_request:
8     branches:
9       - master
10
11 jobs:
12   build:
13     strategy:
14       fail-fast: false
15       matrix:
16         os: [ubuntu-latest]
17         name: [neovim-v04-x64,neovim-nightly-x64]
18         include:
19           - name: neovim-v04-x64
20             os: ubuntu-latest
21             neovim_version: v0.4.3
22           - name: neovim-nightly-x64
23             os: ubuntu-latest
24             neovim_version: nightly
25     runs-on: ${{matrix.os}}
26     steps:
27       - uses: actions/checkout@v4
28       - name: Download neovim
29         shell: bash
30         run: |
31           mkdir -p ~/nvim/bin
32           curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim.appimage -o ~/nvim/bin/nvim
33           chmod u+x ~/nvim/bin/nvim
34       - name: Download test runner
35         shell: bash
36         run: git clone --depth 1 --branch v1.5.4 --single-branch https://github.com/thinca/vim-themis ~/themis
37       - name: Run tests
38         shell: bash
39         run: |
40           export PATH=~/nvim/bin:$PATH
41           export PATH=~/themis/bin:$PATH
42           export THEMIS_VIM=nvim
43           nvim --version
44           themis --reporter spec