Commit ee10c7f 1 parent 17d024a commit ee10c7f Copy full SHA for ee10c7f
File tree 3 files changed +9
-14
lines changed
3 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 37
37
with :
38
38
version : ${{ matrix.version }}
39
39
arch : ${{ matrix.arch }}
40
- - uses : actions/cache@v3
41
- env :
42
- cache-name : cache-artifacts
43
- with :
44
- path : ~/.julia/artifacts
45
- key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
46
- restore-keys : |
47
- ${{ runner.os }}-test-${{ env.cache-name }}-
48
- ${{ runner.os }}-test-
49
- ${{ runner.os }}-
40
+ - uses : julia-actions/cache@v2
50
41
- uses : julia-actions/julia-buildpkg@v1
51
42
- uses : julia-actions/julia-runtest@v1
52
43
docs :
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ authors = ["aTrotier <a.trotier@gmail.com> and contributors"]
4
4
version = " 0.0.1"
5
5
6
6
[deps ]
7
+ Artifacts = " 56f22d72-fd6d-98f1-02f0-08ddc0907c33"
7
8
JSON = " 682c06a0-de6a-54ab-a142-c8b1cf79cde6"
8
9
MRICoilSensitivities = " c57eb701-aafc-44a2-a53c-128049758959"
9
10
MRIFiles = " 5a6f062f-bf45-497d-b654-ad17aae2a530"
@@ -25,8 +26,8 @@ Statistics = "1.10"
25
26
julia = " 1.10"
26
27
27
28
[extras ]
28
- Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
29
29
LazyArtifacts = " 4af54fe1-eca0-43a8-85a7-787d91b784e3"
30
+ Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
30
31
31
32
[targets ]
32
- test = [" Test" ," LazyArtifacts" ]
33
+ test = [" Test" , " LazyArtifacts" ]
Original file line number Diff line number Diff line change @@ -4,9 +4,12 @@ using LazyArtifacts
4
4
using SEQ_BRUKER_a_MP2RAGE_CS_360. NIfTI
5
5
using SEQ_BRUKER_a_MP2RAGE_CS_360. JSON
6
6
using Pkg
7
+ using Artifacts
7
8
8
- Pkg. instantiate ()
9
- const datadir = joinpath (artifact " MP2RAGE_data" )
9
+ toml = Artifacts. find_artifacts_toml (@__DIR__ )
10
+
11
+
12
+ const datadir = Pkg. Artifacts. ensure_artifact_installed (" MP2RAGE_data" , toml)
10
13
@info " The test data is located at $datadir ."
11
14
12
15
@testset " SEQ_BRUKER_a_MP2RAGE_CS_360.jl" begin
You can’t perform that action at this time.
0 commit comments