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 @@ -27,10 +27,14 @@ jobs:
27
27
- uses : julia-actions/julia-buildpkg@v1
28
28
- name : Build
29
29
run : |
30
- julia -e 'using Pkg; Pkg.develop(PackageSpec(path="../ReactionMechanismSimulator.jl")); Pkg.build("ReactionMechanismSimulator");'
30
+ current_path=${{ github.workspace }}
31
+ export JULIA_CONDAPKG_ENV="$current_path/rms_env"
32
+ julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");'
31
33
- name : Run tests
32
34
run : |
33
- julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator";coverage=true)'
35
+ current_path=${{ github.workspace }}
36
+ export JULIA_CONDAPKG_ENV="$current_path/rms_env"
37
+ julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator"; coverage=true)'
34
38
- uses : julia-actions/julia-processcoverage@v1
35
39
- uses : codecov/codecov-action@v1
36
40
with :
You can’t perform that action at this time.
0 commit comments