Testrun for actions
Try loading the plugin into nvim / build (ubuntu-20.04) (push) Failing after 11s
Details
Try loading the plugin into nvim / build (ubuntu-20.04) (push) Failing after 11s
Details
This commit is contained in:
parent
bcf67d08d7
commit
cdff94cb58
|
@ -0,0 +1,37 @@
|
||||||
|
name: Try loading the plugin into nvim
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Prepare system
|
||||||
|
run: |
|
||||||
|
apt-get update -qy
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
if [ "$(uname -m)" == "x86_64" ]; then
|
||||||
|
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||||
|
chmod +x /bin/nvim
|
||||||
|
else
|
||||||
|
wget -O /bin/nvim https://www.nickr.eu/data/nvim
|
||||||
|
chmod +x /bin/nvim
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Load plugin into neovim
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.local/share/nvim/site/pack/plugins/start/
|
||||||
|
cp -r $(pwd) ~/.local/share/nvim/site/pack/plugins/start/$(basename "$(pwd)")
|
||||||
|
|
||||||
|
- name: Run neovim
|
||||||
|
run: |
|
||||||
|
nvim -es
|
Loading…
Reference in New Issue