We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33b1ed commit 1b265a3Copy full SHA for 1b265a3
.github/workflows/regression_tests_cpu_binaries.yml
@@ -22,13 +22,19 @@ jobs:
22
exclude:
23
- os: macos-latest
24
python-version: 3.8
25
- - os: macos-14
26
- python-version: 3.8, 3.9
27
steps:
28
- uses: actions/checkout@v3
29
with:
30
submodules: recursive
31
- - name: Setup conda with Python ${{ matrix.python-version }}
+ - name: Setup Conda for M1
+ if: matrix.os == 'macos-14'
+ uses: s-weigand/setup-conda@v1
32
+ with:
33
+ update-conda: true
34
+ python-version: '3.10'
35
+ conda-channels: anaconda, conda-forge
36
+ - name: Setup Conda for Other OS
37
+ if: matrix.os != 'macos-14'
38
uses: s-weigand/setup-conda@v1
39
40
update-conda: true
0 commit comments