File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ concurrency:
1919
2020jobs :
2121 tests :
22- name : ${{ matrix.os }}, py${{ matrix.python-version }}
22+ name : ${{ matrix.os }}, py${{ matrix.python-version }}, ${{ matrix.channel }}
2323 runs-on : ${{ matrix.os }}
2424 strategy :
2525 fail-fast : false
2626 matrix :
2727 os : [ubuntu-latest, windows-latest]
28+ channel : [defaults, conda-forge]
2829 python-version : ["39", "310", "311", "312"]
2930 include :
3031 - os : macos-13
4142 run : pixi reinstall --environment test-py${{ matrix.python-version }} conda-self
4243 - name : Setup project
4344 run : |
44- echo "channels: [conda-forge ]" > .pixi/envs/test-py${{ matrix.python-version }}/.condarc
45+ echo "channels: [${{ matrix.channel }} ]" > .pixi/envs/test-py${{ matrix.python-version }}/.condarc
4546 pixi run --environment test-py${{ matrix.python-version }} conda info
4647 - name : Run tests
4748 run : pixi run --environment test-py${{ matrix.python-version }} test --basetemp=${{ runner.os == 'Windows' && 'D:\temp' || runner.temp }}
You can’t perform that action at this time.
0 commit comments