Skip to content

Commit edc183d

Browse files
committed
run action with specific version of Vim and Neovim on CI
1 parent dc0e3a2 commit edc183d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
version: [stable, nightly]
10+
version: [stable, nightly, v8.1.2424, v0.4.0]
1111
neovim: [true, false]
12+
exclude:
13+
- { neovim: true, version: v8.1.2424, os: ubuntu-latest }
14+
- { neovim: true, version: v8.1.2424, os: macos-latest }
15+
- { neovim: true, version: v8.1.2424, os: windows-latest }
16+
- { neovim: false, version: v0.4.0, os: ubuntu-latest }
17+
- { neovim: false, version: v0.4.0, os: macos-latest }
18+
- { neovim: false, version: v0.4.0, os: windows-latest }
1219
runs-on: ${{ matrix.os }}
1320
steps:
1421
- uses: actions/checkout@v2

.yamllint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ rules:
44
line-length: disable
55
document-start: disable
66
truthy: disable
7+
braces:
8+
min-spaces-inside: 1
9+
max-spaces-inside: 1

0 commit comments

Comments
 (0)