File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,14 @@ jobs:
28
28
- uses : julia-actions/julia-buildpkg@v1
29
29
- name : Build
30
30
run : |
31
- julia -e 'using Pkg; Pkg.develop(PackageSpec(path="../ReactionMechanismSimulator.jl")); Pkg.build("ReactionMechanismSimulator");'
31
+ current_path=${{ github.workspace }}
32
+ export JULIA_CONDAPKG_ENV="$current_path/rms_env"
33
+ julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");'
32
34
- name : Run tests
33
35
run : |
34
- julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator";coverage=true)'
36
+ current_path=${{ github.workspace }}
37
+ export JULIA_CONDAPKG_ENV="$current_path/rms_env"
38
+ julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator"; coverage=true)'
35
39
- uses : julia-actions/julia-processcoverage@v1
36
40
- uses : codecov/codecov-action@v1
37
41
with :
You can’t perform that action at this time.
0 commit comments