Skip to content

Commit b52428c

Browse files
committed
Fix failing macos ci pipeline
1 parent c8162e4 commit b52428c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
os: [ubuntu-latest, macos-latest]
24+
# setup-miniconda not compatible with macos-latest presently.
25+
# https://github.com/conda-incubator/setup-miniconda/issues/344
26+
os: [ubuntu-latest, macos-12]
2527

2628
steps:
2729
- uses: actions/checkout@v2
@@ -35,7 +37,7 @@ jobs:
3537
key:
3638
${{ matrix.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('.github/mrchem-gha.yml') }}
3739

38-
- uses: conda-incubator/setup-miniconda@v2
40+
- uses: conda-incubator/setup-miniconda@v3
3941
with:
4042
auto-update-conda: true
4143
auto-activate-base: false

0 commit comments

Comments
 (0)