.github/workflows/coverage.yml | 10 +++++++--- diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cca3fd2f537f4610f35c9a521f2ddd1e6d98c60c..fb533343293e09a85f737d04efde9db5009e5acf 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,13 +5,17 @@ linux: name: linux runs-on: ubuntu-18.04 steps: - - name: Checkout Code + - name: Setup Vim + id: vim + uses: rhysd/action-setup-vim@v1 + - name: Checkout LSP Code uses: actions/checkout@v2 - name: Run Tests + env: + LSP_PROFILE: 1 + VIMPRG: ${{ steps.vim.outputs.executable }} run: | uname -a - export LSP_PROFILE=1 - export VIMPRG=vim $VIMPRG --version cd ./test ./run_tests.sh