File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,30 @@ jobs:
3131 toolkit :
3232 - true
3333 - false
34+ nagl_models :
35+ - true
36+ - false
37+ exclude :
38+ - toolkit : false
39+ nagl_models : true
40+
41+
3442 env :
3543 PYTEST_ARGS : -v -nauto --cov=openforcefields --cov-config=setup.cfg --cov-append --cov-report=xml
3644
3745 steps :
3846 - uses : actions/checkout@v5
3947
4048 - name : Install dependencies
41- if : ${{ matrix.toolkit == true }}
49+ if : ${{ matrix.toolkit == true }} and ${{ matrix.nagl_models == true }}
50+ uses : mamba-org/setup-micromamba@v1
51+ with :
52+ environment-file : devtools/conda-envs/test_env_nagl_models.yaml
53+ create-args : >-
54+ python=${{ matrix.python-version }}
55+
56+ - name : Install dependencies
57+ if : ${{ matrix.toolkit == true }} and ${{ matrix.nagl_models == false }}
4258 uses : mamba-org/setup-micromamba@v1
4359 with :
4460 environment-file : devtools/conda-envs/test_env.yaml
You can’t perform that action at this time.
0 commit comments