Skip to content

Commit 888d561

Browse files
committed
export JULIA_CONDAPKG_ENV="rms_env"
1 parent e53a6b7 commit 888d561

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ jobs:
2727
- uses: julia-actions/julia-buildpkg@v1
2828
- name: Build
2929
run: |
30-
julia -e 'ENV["JULIA_CONDAPKG_ENV"] = abspath("rms_env"); using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");'
30+
export JULIA_CONDAPKG_ENV="rms_env"
31+
julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path="../ReactionMechanismSimulator.jl/")); Pkg.build("ReactionMechanismSimulator");'
3132
- name: Run tests
3233
run: |
33-
julia -e 'ENV["JULIA_CONDAPKG_ENV"] = abspath("rms_env"); using Pkg; Pkg.test("ReactionMechanismSimulator"; coverage=true)'
34+
julia -e 'using Pkg; Pkg.test("ReactionMechanismSimulator"; coverage=true)'
3435
- uses: julia-actions/julia-processcoverage@v1
3536
- uses: codecov/codecov-action@v1
3637
with:

0 commit comments

Comments
 (0)