Update blank.yml

This commit is contained in:
Hörmet Yiltiz 2023-12-20 19:09:01 -05:00 committed by GitHub
parent 165b2fbcd1
commit 9cb156e491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

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