42
42
with :
43
43
python-version : ${{ matrix.python-version }}
44
44
- uses : ./.github/actions/install-master-dependencies
45
- if : ${{ !startsWith(github.ref, 'refs/heads/stable') }}
45
+ if : ${{ !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
46
46
- uses : ./.github/actions/install-machine-learning
47
47
- name : Install Dependencies
48
48
run : |
95
95
with :
96
96
python-version : ${{ matrix.python-version }}
97
97
- uses : ./.github/actions/install-master-dependencies
98
- if : ${{ !startsWith(github.ref, 'refs/heads/stable') }}
98
+ if : ${{ !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
99
99
- uses : ./.github/actions/install-machine-learning
100
100
- run : make lint
101
101
if : ${{ !cancelled() }}
@@ -121,7 +121,7 @@ jobs:
121
121
python-version : ${{ matrix.python-version }}
122
122
- uses : ./.github/actions/install-libraries
123
123
- uses : ./.github/actions/install-master-dependencies
124
- if : ${{ !startsWith(github.ref, 'refs/heads/stable') }}
124
+ if : ${{ !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
125
125
- uses : ./.github/actions/install-machine-learning
126
126
- name : Machine Learning Unit Tests under Python ${{ matrix.python-version }}
127
127
uses : ./.github/actions/run-tests
@@ -159,7 +159,7 @@ jobs:
159
159
with :
160
160
python-version : ${{ matrix.python-version }}
161
161
- uses : ./.github/actions/install-master-dependencies
162
- if : ${{ !startsWith(github.ref, 'refs/heads/stable') }}
162
+ if : ${{ !startsWith(github.ref, 'refs/heads/stable') && !startsWith(github.base_ref, 'stable/') }}
163
163
- uses : ./.github/actions/install-machine-learning
164
164
- name : Install Dependencies
165
165
run : |
0 commit comments