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