From 99bf053d4fd6fcdb855ef29824fe18c7429ebdd4 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Wed, 17 May 2023 19:03:48 +0530 Subject: [PATCH] fix(CI): fixed neovim action and typo --- .github/workflows/neovim.yml | 23 ++++++----------------- README.md | 2 +- 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/.github/workflows/neovim.yml b/.github/workflows/neovim.yml index 27bdb8a0..0f65875f 100644 --- a/.github/workflows/neovim.yml +++ b/.github/workflows/neovim.yml @@ -37,27 +37,16 @@ jobs: nvim --headless -u test/init.lua +q macos: runs-on: macos-latest - strategy: - fail-fast: true - matrix: - neovim_tag: - [ - "v0.8.0", - "v0.8.1", - "v0.8.2", - "v0.8.3", - "v0.9.0", - "stable", - "nightly", - ] - name: MacOS nvim-${{ matrix.neovim_tag }} + name: Macos nvim-nightly steps: - uses: actions/checkout@v3 - name: Install Neovim - uses: MunifTanjim/setup-neovim-action@v1 - with: - tag: ${{ matrix.neovim_tag }} + run: | + wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz + xattr -c ./nvim-macos.tar.gz + tar xzvf nvim-macos.tar.gz &> /dev/null + ln -s $(pwd)/nvim-macos/bin/nvim /usr/local/bin/nvim - name: Run neovim run: | nvim --version diff --git a/README.md b/README.md index 96349e35..feea9557 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Subscribe to this [discussion](https://github.com/projekt0n/github-nvim-theme/discussions/198) or `:h github-theme-changelog` to receive updates on breaking changes and deprecations. -- **2022-05-14**: This theme was major refactored with changes to Neovim support and +- **2023-05-14**: This theme was major refactored with changes to Neovim support and codebase, heavily inspired by [nightfox.nvim](https://github.com/EdenEast/nightfox.nvim). Credit goes to [EdenEast](https://github.com/EdenEast). For older Neovim versions, use the [0.0.x](https://github.com/projekt0n/github-nvim-theme/tree/0.0.x) branch.