From feb01cc8e8f08b289bee925fd2e1b952b87fe437 Mon Sep 17 00:00:00 2001 From: dehann Date: Mon, 9 Oct 2023 23:35:05 -0700 Subject: [PATCH] add code cov --- .github/workflows/CI.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ca9be24..e7e02c6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -44,14 +44,16 @@ jobs: run: | git config --global user.name Tester git config --global user.email te@st.er - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest + - name: "Julia Pkg build as necessary" + uses: julia-actions/julia-buildpkg@latest + - name: "Run Julia tests" + uses: julia-actions/julia-runtest@latest continue-on-error: ${{ matrix.julia-version == 'nightly' }} - # - uses: julia-actions/julia-processcoverage@v1 - # if: ${{ matrix.julia-version == '1.9' }} - # - uses: codecov/codecov-action@v1 - # with: - # file: lcov.info + - uses: julia-actions/julia-processcoverage@v1 + if: ${{ matrix.julia-version == '1.9' }} + - uses: codecov/codecov-action@v1 + with: + file: lcov.info