Skip to content

Commit e07e301

Browse files
[REGRESSION] fix syntax by reverting (- WIP #74 -)
1 parent a53dd67 commit e07e301

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/Tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ jobs:
203203
pip install -r ./requirements.txt
204204
pip install -r ./test-requirements.txt || true
205205
- name: Install code-climate tools for ${{ matrix.python-version }}
206-
if: runner.os != "Linux"
206+
if: ${{ runner.os }} != "Linux"
207207
shell: bash
208208
run: if [ "$OS" == "macos-latest" ] ; then ./tests/fetch_cc-test-reporter || true ; fi ;
209209
- name: Install deepsource tools for ${{ matrix.python-version }}
210-
if: runner.os == "Linux"
210+
if: ${{ runner.os }} == "Linux"
211211
shell: bash
212212
run: |
213213
if [ "$OS" == "ubuntu-latest" ] ; then (curl https://deepsource.io/cli | sh) || true ; else echo "SKIP deepsource" ; fi ;
@@ -242,7 +242,7 @@ jobs:
242242
run: |
243243
if [ "$OS" == "macos-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
244244
- name: deepsource for ${{ matrix.python-version }}
245-
if: runner.os == "Linux"
245+
if: ${{ runner.os }} == "Linux"
246246
shell: bash
247247
run: |
248248
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:
282282
pip install -r ./requirements.txt ;
283283
pip install -r ./test-requirements.txt || true ;
284284
- name: Install code-climate tools for ${{ matrix.python-version }}
285-
if: runner.os == "Linux"
285+
if: ${{ runner.os }} == "Linux"
286286
shell: bash
287287
run: if [ "$OS" == "ubuntu-latest" ] ; then ./tests/fetch_cc-test-reporter || true ; fi ;
288288
- name: Install deepsource tools for ${{ matrix.python-version }}
289-
if: runner.os == "Linux"
289+
if: ${{ runner.os }} == "Linux"
290290
shell: bash
291291
run: |
292292
if [ "$OS" == "ubuntu-latest" ] ; then (curl https://deepsource.io/cli | sh) || true ; else echo "SKIP deepsource" ; fi ;
@@ -316,12 +316,12 @@ jobs:
316316
path: ./test-reports/
317317
if-no-files-found: ignore
318318
- name: code-climate for ${{ matrix.python-version }}
319-
if: runner.os == "Linux"
319+
if: ${{ runner.os }} == "Linux"
320320
shell: bash
321321
run: |
322322
if [ "$OS" == "ubuntu-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
323323
- name: deepsource for ${{ matrix.python-version }}
324-
if: runner.os == "Linux"
324+
if: ${{ runner.os }} == "Linux"
325325
shell: bash
326326
run: |
327327
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:
430430
path: ./test-reports/
431431
if-no-files-found: ignore
432432
- name: code-climate for ${{ matrix.python-version }}
433-
if: runner.os != "Linux"
433+
if: ${{ runner.os }} != "Linux"
434434
run: |
435435
if [ "$OS" == "macos-latest" ] ; then ./cc-test-reporter after-build --exit-code 0 || true ; else echo "SKIP code climate" ; fi ;
436436
- name: Post-purge

0 commit comments

Comments
 (0)