From 1f63cd7c4345a82676842933f808ceddeaeea2cb Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Mon, 20 Apr 2026 18:57:18 +0200 Subject: [PATCH] ci: build `test` project It seems like the caching is only caching the main project because the action to build the package was pointing to the main `Project.toml`. This means that every CI is super long. Hopefully this addresses the issue by caching the entire project with test dependencies. --- .github/workflows/ReusableTest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ReusableTest.yml b/.github/workflows/ReusableTest.yml index 6f47ff6..adbaf1c 100644 --- a/.github/workflows/ReusableTest.yml +++ b/.github/workflows/ReusableTest.yml @@ -42,6 +42,8 @@ jobs: - name: Use Julia cache uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 + with: + project: "test" - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 if: ${{ inputs.run_codecov }}