From 1178ec70c551d9be75c0730fdb99f89f622be786 Mon Sep 17 00:00:00 2001 From: Aaruni Kaushik Date: Wed, 7 Aug 2024 17:47:12 +0200 Subject: [PATCH] Part revert of cache reorder --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a83eae8..26e8260 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -25,6 +25,10 @@ jobs: uses: julia-actions/setup-julia@v2 with: version: '1.10' + - uses: julia-actions/cache@v2 + with: + cache-name: julia-cache;workflow=${{ github.workflow }};ref=${{ github.run_id }} + include-matrix: false - name: "Install julia pre-requisites" run: | julia -e ' @@ -35,10 +39,6 @@ jobs: Pkg.add("Graphs") Pkg.add("Interact") Pkg.add("Plots")' - - uses: julia-actions/cache@v2 - with: - cache-name: julia-cache;workflow=${{ github.workflow }};ref=${{ github.run_id }} - include-matrix: false job2: needs: - job1