From e96875a4254e92cdb03b3d3b3e32b15262025191 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 30 Jul 2021 10:43:24 -0400 Subject: [PATCH] workflow syntax --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 024bfe438..2a8103924 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -55,9 +55,9 @@ jobs: env: HOME: /tmp run: make test-unit-coverage - - if: !startsWith(runner.os, 'linux') + - if: startsWith(runner.os, 'linux') != true run: pip install -e .[test] - - if: !startsWith(runner.os, 'linux') + - if: startsWith(runner.os, 'linux') != true env: HOME: /tmp run: python -m unittest tests/unit/test_conf.py