From 74475d1f7d55cfa852c3d497145ca6a2733bb948 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 19 Mar 2023 20:36:39 +0100 Subject: [PATCH] chore: update templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 ++- .github/workflows/ci.yml | 8 ++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7c31262..5a1cbec 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -16,7 +16,7 @@ body: required: true - label: I have searched the existing issues of persistence.nvim required: true - - label: I have searched the exsiting issues of plugins related to this issue + - label: I have searched the existing issues of plugins related to this issue required: true - type: input attributes: @@ -59,6 +59,7 @@ body: value: | -- DO NOT change the paths and don't remove the colorscheme local root = vim.fn.fnamemodify("./.repro", ":p") + -- set stdpaths to use .repro for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ff5b5e..7c1f3d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,12 @@ jobs: - name: Install Neovim shell: bash run: | - wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.deb -O /tmp/nvim.deb - sudo dpkg -i /tmp/nvim.deb + mkdir -p /tmp/nvim + wget -q https://github.com/neovim/neovim/releases/download/nightly/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: Run Tests run: | nvim --version