Skip to content

Commit

Permalink
Re order when we cache
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Aug 7, 2024
1 parent f687de1 commit a1eeba5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ 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.ref }}
include-matrix: false
- name: "Install julia pre-requisites"
run: |
julia -e '
Expand All @@ -39,6 +35,10 @@ 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
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: julia-actions/cache@v2
with:
cache-name: julia-cache;workflow=${{ github.workflow }};ref=${{ github.ref }}
cache-name: julia-cache;workflow=${{ github.workflow }};ref=${{ github.run_id }}
include-matrix: false
- uses: actions/checkout@v4
- name: "Install Jupyter"
Expand Down

0 comments on commit a1eeba5

Please sign in to comment.