From 9cb156e491f97aa6a26c5a0abb8e6c048576f32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rmet=20Yiltiz?= Date: Wed, 20 Dec 2023 19:09:01 -0500 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index e51642f7..68d06496 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -25,15 +25,15 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo "Finished git checkout in $GITHUB_WORKSPACE" - # Runs a set of commands using the runners shell - - name: Run a multi-line script + - name: Install neovim run: | + echo "Finished git checkout in $GITHUB_WORKSPACE" sudo apt update sudo apt install -y neovim + nvim --version + - name: Setup kitckstart and start nvim + run: | ln -sf $GITHUB_WORKSPACE "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim touch msg.log nvim --headless -c ':Lazy! sync' -c ':qa' init.lua 2>&1 | tee -a msg.log