diff options
author | Abouzar Parvan <[email protected]> | 2021-07-20 19:35:35 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-20 15:05:35 +0000 |
commit | 2827ed76ab5fd523a4a6e9f4a0144f285a5723a2 (patch) | |
tree | 6beddfe16938b4dfd7ab05adee544aaad916d3a1 /.github/workflows | |
parent | ba8f6c84b1fc602f3138f5f31d0ba8f1e2104060 (diff) |
enables testing again (#1039)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/install.yaml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index e0b7a179..9b664f1a 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -14,8 +14,8 @@ jobs: fail-fast: false matrix: include: -# - runner: ubuntu-20.04 -# os: linux + - runner: ubuntu-20.04 + os: linux - runner: macos-10.15 os: osx runs-on: ${{ matrix.runner }} @@ -27,7 +27,9 @@ jobs: if: matrix.os == 'linux' run: | sudo apt-get install -y gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip build-essential - sudo bash ./utils/bin/install-latest-neovim + sudo add-apt-repository ppa:neovim-ppa/unstable -y + sudo apt-get update + sudo apt-get install neovim -y - name: Installl dependencies for OSX if: matrix.os == 'osx' @@ -37,13 +39,13 @@ jobs: - name: Install LunarVim run: | - bash ./utils/installer/install.sh + bash ./utils/installer/install.sh --testing - name: Test LunarVim PackerCompile - run: if nvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi + run: if lvim --headless +PackerCompile -c ':qall' 2>&1|grep -q 'Error'; then false; fi - name: Test LunarVim Health - run: if nvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi + run: if lvim --headless +checkhealth -c ':qall' 2>&1|grep -q 'Error'; then false; fi # freebsd: # runs-on: macos-latest |