Skip to content

Commit

Permalink
if
Browse files Browse the repository at this point in the history
  • Loading branch information
pablopunk committed Jan 25, 2024
1 parent 3612199 commit 2ebe940
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/lazy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@ jobs:
nvim --headless "+Lazy! install" +qa 2>>error.log
nvim --headless +qa 2>>error.log
cat error.log
[[ -z $(cat error.log) ]] || exit 1
if [[ -z $(cat error.log) ]] ; then
echo "Passed."
else
echo "Failed."
exit 1
fi

0 comments on commit 2ebe940

Please sign in to comment.