Skip to content

Commit

Permalink
ci(github-actions): use normal install neovim
Browse files Browse the repository at this point in the history
fix #8
  • Loading branch information
PunGrumpy committed Nov 17, 2023
1 parent 19efd82 commit c5bff44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 37 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
jobs:
tests:
name: 🥼 Tests
if: always()
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
Expand All @@ -16,11 +15,16 @@ jobs:
steps:
- name: 🔔 Checkout
uses: actions/checkout@v4
- name: 👾 Install Neovim
uses: ./.github/workflows/neovim.yml
with:
os: ${{ matrix.os }}
version: ${{ matrix.neovim-version }}
- name: 📦 Install NeoVim
shell: bash
continue-on-error: true
run: |
mkdir -p /tmp/nvim
wget -q https://github.com/neovim/neovim/releases/download/${{ matrix.neovim-version }}/nvim.appimage -O /tmp/nvim/nvim.appimage
cd /tmp/nvim
chmod a+x ./nvim.appimage
./nvim.appimage --appimage-extract
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
- name: 🧪 Test
run: |
nvim --version
Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/neovim.yml

This file was deleted.

0 comments on commit c5bff44

Please sign in to comment.