From 5459c5f74063005b12b08a54997f110e538debfd Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Mon, 24 Oct 2022 19:19:10 -0700 Subject: [PATCH] Code coverage doesn't work for Vim9 scripts. Remove it for now --- .github/workflows/coverage.yml | 48 ---------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 9b5c9f5..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Code coverage -#on: [push, pull_request] -#jobs: -# linux: -# name: linux -# runs-on: ubuntu-latest -# steps: -# - name: Install packages -# run: | -# sudo apt update && sudo apt install -y clangd-12 -# - name: Setup Vim -# id: vim -# uses: rhysd/action-setup-vim@v1 -# with: -# version: nightly -# - name: Checkout LSP Code -# uses: actions/checkout@v2 -# - name: Run Tests -# env: -# LSP_PROFILE: 1 -# VIMPRG: ${{ steps.vim.outputs.executable }} -# run: | -# uname -a -# $VIMPRG --version -# cd ./test -# ./run_tests.sh -# - name: Install Python -# uses: actions/setup-python@v2 -# with: -# python-version: 3.5 -# - name: Install covimerage -# run: | -# pip install covimerage -# covimerage --version -# - name: Run covimerage -# run: | -# cd ./test -# covimerage write_coverage lsp_profile.txt -# - name: Take coverage -# run: | -# cd ./test -# coverage report -# coverage xml -# - name: Upload coverage to codecov -# uses: codecov/codecov-action@v2 -# with: -# token: ${{ secrets.CODECOV_TOKEN }} -# file: ./test/coverage.xml -- 2.48.1