File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,21 @@ jobs:
70
70
run : |
71
71
git config --global user.email "bids.maintenance@gmail.com"
72
72
git config --global user.name "bids-maintenance"
73
- - name : Set up Python ${{ matrix.python-version }}
73
+
74
+ - name : Set up Python ${{ matrix.python-version }} via conda
74
75
uses : conda-incubator/setup-miniconda@v3
76
+ if : matrix.os == 'ubuntu-latest'
75
77
with :
76
78
auto-update-conda : true
77
79
python-version : ${{ matrix.python-version }}
78
80
81
+ - name : Set up Python ${{ matrix.python-version }}
82
+ uses : actions/setup-python@v5
83
+ if : matrix.os != 'ubuntu-latest'
84
+ with :
85
+ python-version : ${{ matrix.python-version }}
86
+ allow-prereleases : true
87
+
79
88
- name : Install git-annex ubuntu
80
89
if : matrix.os == 'ubuntu-latest'
81
90
run : conda install -c conda-forge git-annex
You can’t perform that action at this time.
0 commit comments