Testrun for actions
Try loading the plugin into nvim / build (ubuntu-20.04) (push) Failing after 11s Details

This commit is contained in:
Yannick Reiß 2024-12-18 10:47:12 +01:00
parent bcf67d08d7
commit cdff94cb58
1 changed files with 37 additions and 0 deletions

View File

@ -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