diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index d03148ce7..687b26534 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -1,4 +1,4 @@ -name: Code coverage +name: Code Coverage on: [push, pull_request] jobs: run: @@ -8,13 +8,12 @@ jobs: uses: actions/checkout@v3 - name: Dependencies - id: depends run: | sudo apt-get update sudo apt-get install build-essential gcc-8 - name: Build - run: CC=gcc-8 make -j LLAMA_CODE_COVERAGE=1 tests + run: CC=gcc-8 make -j tests - name: Run tests run: CC=gcc-8 make test