Skip to content

Commit

Permalink
no error.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pablopunk committed Jan 26, 2024
1 parent 1c51dfa commit d8cbf5a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/lazy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,26 @@ jobs:
echo
echo "Downloading lazy.nvim config"
mkdir -p ~/.config/nvim/lua/config
curl "https://raw.githubusercontent.com/LazyVim/starter/main/init.lua" > ~/.config/nvim/init.lua
curl -sL "https://raw.githubusercontent.com/LazyVim/starter/main/init.lua" > ~/.config/nvim/init.lua
cat ~/.config/nvim/init.lua
curl "https://raw.githubusercontent.com/LazyVim/starter/main/lua/config/lazy.lua" > ~/.config/nvim/lua/config/lazy.lua
curl -sL "https://raw.githubusercontent.com/LazyVim/starter/main/lua/config/lazy.lua" > ~/.config/nvim/lua/config/lazy.lua
cat ~/.config/nvim/lua/config/lazy.lua
echo
echo "Downloading pablopunk's unclutter config"
mkdir -p ~/.config/nvim/lua/plugins
curl "https://raw.githubusercontent.com/pablopunk/dotfiles/master/nvim/lua/pablopunk/plugins/unclutter.lua" > ~/.config/nvim/lua/plugins/unclutter.lua
curl -sL "https://raw.githubusercontent.com/pablopunk/dotfiles/master/nvim/lua/pablopunk/plugins/unclutter.lua" > ~/.config/nvim/lua/plugins/unclutter.lua
cat ~/.config/nvim/lua/plugins/unclutter.lua
- name: Run tests
run: |
export PATH="${PWD}/_neovim/bin:${PATH}"
export VIM="${PWD}/_neovim/share/nvim/runtime"
touch error.log
nvim --headless +qa 2>>error.log
nvim --headless "+Lazy! install" "+Lazy! update" +qa 2>>error.log
nvim --headless +qa 2>>error.log
echo
cat error.log
echo
test -s error.log && exit 1
nvim --headless +qa
nvim --headless "+Lazy! install" "+Lazy! update" +qa
nvim --headless +qa
# echo
# cat error.log
# echo
# test -s error.log && exit 1

0 comments on commit d8cbf5a

Please sign in to comment.