From 52ff5ce62b515793f211267eb6807440faf2a650 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Mon, 30 Mar 2020 10:31:36 -0700 Subject: [PATCH] improvement to github action isort check to print change needed, added pipenv install to be verbose --- .github/workflows/daemon-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daemon-checks.yml b/.github/workflows/daemon-checks.yml index c7f3f0ec..dc7365f7 100644 --- a/.github/workflows/daemon-checks.yml +++ b/.github/workflows/daemon-checks.yml @@ -19,11 +19,11 @@ jobs: cp setup.py.in setup.py cp core/constants.py.in core/constants.py sed -i 's/True/False/g' core/constants.py - pipenv sync --dev + pipenv -v sync --dev - name: isort run: | cd daemon - pipenv run isort -c + pipenv run isort -c -df - name: black run: | cd daemon