diff options
author | kylo252 <[email protected]> | 2021-09-09 18:53:21 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-09 18:53:21 +0200 |
commit | 38f53bf08c974791f3d51e8a9c7efe9373c8ce3a (patch) | |
tree | 3f2d5ff1f55bc6fbddc0259fc59cf64155c29edf /.github/workflows/install.yaml | |
parent | ac32f2e64d61291ba4969599827eef515712d5d8 (diff) |
[Feature]: Add some very basic unit-tests (#1369)
Diffstat (limited to '.github/workflows/install.yaml')
-rw-r--r-- | .github/workflows/install.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index fa8bf0e3..3e529dc6 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -43,6 +43,11 @@ jobs: ln -s "$PWD"/* "$HOME"/.local/share/lunarvim/lvim/. bash ./utils/installer/install.sh + - name: Run unit-tests + # NOTE: make sure to adjust the timeout if you start adding a lot of tests + timeout-minutes: 4 + run: make test + - name: Test LunarVim PackerCompile run: if "$HOME"/.local/bin/lvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi |