From 5aa7c16cb0cd347437e721d936d308ee41a0afff Mon Sep 17 00:00:00 2001 From: "Gregory L. Wagner" Date: Thu, 2 Nov 2023 14:33:07 -0600 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33ce4400..90ee6e23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,8 +46,16 @@ jobs: ${{ runner.os }}-test- ${{ runner.os }}- - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v2 + - name: Install dependencies + run: | + julia --color=yes --project -e 'using Pkg; Pkg.instantiate()' + julia --color=yes --project -e 'using Pkg; Pkg.precompile()' + julia --color=yes --project -e 'using Pkg; Pkg.test()' + env: + TEST_GROUP: "downloading" + with: file: lcov.info +