Skip to content

Commit a528490

Browse files
committed
Run ci tests on more appimage versions
1 parent 03f04a5 commit a528490

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@ jobs:
3030
runs-on: ubuntu-latest
3131
strategy:
3232
matrix:
33-
x:
33+
version: [v0.10.0, v0.10.1, v0.10.2, v0.10.3, v0.10.4, nightly]
34+
tags:
35+
- [appimage, v10]
36+
include:
3437
- version: v0.9.0
3538
tags: [appimage]
36-
- version: v0.10.0
37-
tags: [appimage, v10]
38-
- version: nightly
39-
tags: [appimage, v10]
4039
steps:
4140
- uses: actions/checkout@v3
4241
- name: install dependencies
@@ -45,12 +44,12 @@ jobs:
4544
sudo apt-get install -yqq --no-install-recommends scdoc lua-busted
4645
- name: Download official neovim appimage
4746
run: |
48-
wget https://github.com/neovim/neovim/releases/download/${{ matrix.x.version }}/nvim.appimage{,.sha256sum}
47+
wget https://github.com/neovim/neovim/releases/download/${{ matrix.version }}/nvim.appimage{,.sha256sum}
4948
sha256sum -c nvim.appimage.sha256sum
5049
chmod +x nvim.appimage
5150
./nvim.appimage --appimage-extract
5251
- name: Run the test suite
53-
run: make test "BUSTED=busted --exclude-tags=${{ join(matrix.x.tags, ',') }}"
52+
run: make test "BUSTED=busted --exclude-tags=${{ join(matrix.tags, ',') }}"
5453
env:
5554
TERM: dumb
5655
NVIMPAGER_NVIM: squashfs-root/usr/bin/nvim

0 commit comments

Comments
 (0)