]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/asyncomplete/.github/workflows/windows_vim.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 / asyncomplete / .github / workflows / windows_vim.yml
1 name: windows_vim
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: [windows-latest]
17         name: [vim-v82-x64, vim-v81-x64, vim-v80-x64]
18         include:
19           - name: vim-v82-x64
20             os: windows-latest
21             vim_version: 8.2.0813
22             vim_arch: x64
23             vim_ver_path: vim82
24           - name: vim-v81-x64
25             os: windows-latest
26             vim_version: 8.1.2414
27             vim_arch: x64
28             vim_ver_path: vim81
29           - name: vim-v80-x64
30             os: windows-latest
31             vim_version: 8.0.1567
32             vim_arch: x64
33             vim_ver_path: vim80
34     runs-on: ${{matrix.os}}
35     steps:
36       - uses: actions/checkout@v4
37       - name: Download vim
38         shell: PowerShell
39         run: Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v${{matrix.vim_version}}/gvim_${{matrix.vim_version}}_${{matrix.vim_arch}}.zip -OutFile vim.zip
40       - name: Extract vim
41         shell: PowerShell
42         run: Expand-Archive -Path vim.zip -DestinationPath $env:USERPROFILE
43       - name: Download test runner
44         shell: PowerShell
45         run: git clone --depth 1 --branch v1.5.4 --single-branch https://github.com/thinca/vim-themis $env:USERPROFILE\themis
46       - name: Run tests
47         shell: cmd
48         run: |
49           SET PATH=%USERPROFILE%\vim\${{matrix.vim_ver_path}};%PATH%;
50           SET PATH=%USERPROFILE%\themis\bin;%PATH%;
51           vim --version
52           themis --reporter spec