Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed May 20, 2024
1 parent 540422d commit 92d16a5
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
appimage-version:
- v0.9.0
- v0.10.0
- nightly
x:
- version: v0.9.0
tags: [appimage]
- version: v0.10.0
tags: [appimage, v10]
- version: nightly
tags: [appimage, v10]
steps:
- uses: actions/checkout@v3
- name: install dependencies
Expand All @@ -42,16 +45,16 @@ jobs:
sudo apt-get install -yqq --no-install-recommends scdoc lua-busted
- name: Download official neovim appimage
run: |
wget https://github.com/neovim/neovim/releases/download/${{ matrix.appimage-version }}/nvim.appimage{,.sha256sum}
wget https://github.com/neovim/neovim/releases/download/${{ matrix.x.version }}/nvim.appimage{,.sha256sum}
sha256sum -c nvim.appimage.sha256sum
chmod +x nvim.appimage
./nvim.appimage --appimage-extract
- name: Run the test suite
run: make test
run: make test "BUSTED=busted --exclude-tags=${{ join(matrix.x.tags, ',') }}"
env:
TERM: dumb
NVIMPAGER_NVIM: squashfs-root/usr/bin/nvim
BUSTED: busted --exclude-tags=appimage${{ matrix.appimage-version == 'v0.9.0' && '' || ',v10' }}


macos:
runs-on: macos-latest
Expand Down

0 comments on commit 92d16a5

Please sign in to comment.