Skip to content

Commit 278b740

Browse files
authored
fix schur complement GHA workflow (#492)
1 parent 616f0af commit 278b740

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: .github/workflows/test_pr_and_main.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,19 @@ jobs:
169169
matrix:
170170
python-version: [3.9]
171171
steps:
172-
- uses: actions/checkout@v1
172+
- uses: actions/checkout@v3
173173
- name: setup conda
174-
uses: s-weigand/setup-conda@v1
174+
uses: conda-incubator/setup-miniconda@v2
175175
with:
176-
update-conda: true
177176
python-version: ${{ matrix.python-version }}
178-
conda-channels: anaconda, conda-forge
177+
channels: anaconda, conda-forge
178+
activate-environment: test_env
179+
auto-activate-base: false
179180
- name: Install dependencies
180181
run: |
181182
python -m pip install --upgrade pip
182183
pip install nose pybind11
184+
conda install conda-forge::libstdcxx-ng
183185
conda install openmpi pymumps --no-update-deps
184186
pip install mpi4py pandas
185187
pip install git+https://github.com/pyutilib/pyutilib.git

0 commit comments

Comments
 (0)