From af3281d3c8380447c4e17e6bc3cb881a33967335 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Tue, 16 Nov 2021 11:35:11 -0600 Subject: [PATCH] github: fix running black MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes "No Path provided. Nothing to do 😴" --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98b563c..295c64e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - run: poetry run pytest - run: poetry run flake8 --show-source if: ${{ success() || failure() }} - - run: poetry run black --check --diff + - run: poetry run black --check --diff . if: ${{ success() || failure() }} - run: poetry run make -C docs/ html if: ${{ success() || failure() }}