Update blank.yml
This commit is contained in:
parent
165b2fbcd1
commit
9cb156e491
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue