@@ -203,11 +203,11 @@ jobs:
203
203
pip install -r ./requirements.txt
204
204
pip install -r ./test-requirements.txt || true
205
205
- name : Install code-climate tools for ${{ matrix.python-version }}
206
- if : runner.os != "Linux"
206
+ if : ${{ runner.os }} != "Linux"
207
207
shell : bash
208
208
run : if [ "$OS" == "macos-latest" ] ; then ./tests/fetch_cc-test-reporter || true ; fi ;
209
209
- name : Install deepsource tools for ${{ matrix.python-version }}
210
- if : runner.os == "Linux"
210
+ if : ${{ runner.os }} == "Linux"
211
211
shell : bash
212
212
run : |
213
213
if [ "$OS" == "ubuntu-latest" ] ; then (curl https://deepsource.io/cli | sh) || true ; else echo "SKIP deepsource" ; fi ;
@@ -242,7 +242,7 @@ jobs:
242
242
run : |
243
243
if [ "$OS" == "macos-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
244
244
- name : deepsource for ${{ matrix.python-version }}
245
- if : runner.os == "Linux"
245
+ if : ${{ runner.os }} == "Linux"
246
246
shell : bash
247
247
run : |
248
248
if [ "$OS" == "ubuntu-latest" ] ; then ./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml 2>/dev/null || true ; else echo "SKIP deepsource" ; fi ;
@@ -282,11 +282,11 @@ jobs:
282
282
pip install -r ./requirements.txt ;
283
283
pip install -r ./test-requirements.txt || true ;
284
284
- name : Install code-climate tools for ${{ matrix.python-version }}
285
- if : runner.os == "Linux"
285
+ if : ${{ runner.os }} == "Linux"
286
286
shell : bash
287
287
run : if [ "$OS" == "ubuntu-latest" ] ; then ./tests/fetch_cc-test-reporter || true ; fi ;
288
288
- name : Install deepsource tools for ${{ matrix.python-version }}
289
- if : runner.os == "Linux"
289
+ if : ${{ runner.os }} == "Linux"
290
290
shell : bash
291
291
run : |
292
292
if [ "$OS" == "ubuntu-latest" ] ; then (curl https://deepsource.io/cli | sh) || true ; else echo "SKIP deepsource" ; fi ;
@@ -316,12 +316,12 @@ jobs:
316
316
path : ./test-reports/
317
317
if-no-files-found : ignore
318
318
- name : code-climate for ${{ matrix.python-version }}
319
- if : runner.os == "Linux"
319
+ if : ${{ runner.os }} == "Linux"
320
320
shell : bash
321
321
run : |
322
322
if [ "$OS" == "ubuntu-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
323
323
- name : deepsource for ${{ matrix.python-version }}
324
- if : runner.os == "Linux"
324
+ if : ${{ runner.os }} == "Linux"
325
325
shell : bash
326
326
run : |
327
327
if [ "$OS" == "ubuntu-latest" ] ; then ./bin/deepsource report --analyzer test-coverage --key python --value-file ./coverage.xml 2>/dev/null || true ; else echo "SKIP deepsource" ; fi ;
@@ -430,7 +430,7 @@ jobs:
430
430
path : ./test-reports/
431
431
if-no-files-found : ignore
432
432
- name : code-climate for ${{ matrix.python-version }}
433
- if : runner.os != "Linux"
433
+ if : ${{ runner.os }} != "Linux"
434
434
run : |
435
435
if [ "$OS" == "macos-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
436
436
- name : Post-purge
0 commit comments