You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/CI.yml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,11 @@ jobs:
27
27
- uses: julia-actions/julia-buildpkg@v1
28
28
- name: Build
29
29
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");'
31
32
- name: Run tests
32
33
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)'
0 commit comments