diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index c6b1bab..149498d 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -22,11 +22,11 @@ jobs: run: | mkdir -p /bin if [ "$(uname -m)" == "x86_64" ]; then - wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage - chmod +x /bin/nvim + wget -O ~/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage + chmod +x ~/nvim else - wget -O /bin/nvim https://www.nickr.eu/data/nvim - chmod +x /bin/nvim + wget -O ~/nvim https://www.nickr.eu/data/nvim + chmod +x ~/nvim fi - name: Load plugin into neovim @@ -36,4 +36,4 @@ jobs: - name: Run neovim run: | - /bin/nvim -es + ~/nvim -es