We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ca1da commit 2f08153Copy full SHA for 2f08153
.github/workflows/conda_build.yml
@@ -39,3 +39,11 @@ jobs:
39
conda config --add channels conda-forge
40
conda config --add channels jacksonburns
41
conda-build --token $CONDA_TOKEN --user rmg .conda
42
+ - name: Test Binary Install with RMS
43
+ run: |
44
+ conda install -c local rmg
45
+ conda insatll -c conda-forge julia=1.9.1 pyjulia>=0.6
46
+ conda install -c rmg pyrms diffeqpy
47
+ python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()"
48
+ julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator'
49
+ python-jl rmg.py test/regression/RMS_constantVIdealGasReactor_superminimal/input.py
0 commit comments