From 3f9c098835e5974661f35604f7b24743965dde6c Mon Sep 17 00:00:00 2001 From: Elliot <3186037+elliot-100@users.noreply.github.com> Date: Thu, 23 May 2024 12:41:19 +0100 Subject: [PATCH] Revert to targeting `.` --- .github/workflows/python-package.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 3049efe..546e358 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -36,12 +36,10 @@ jobs: # Exit with error if the code is not properly formatted; show diffs; # `black` compatibility. # The diffs should be the same as fixes made by running `isort .` in the root - # project folder, which picks up config from `pyproject.toml` and checks - # formatting in these directories + # project folder, which picks up config from `pyproject.toml` run: | source $VENV - isort spond --check-only --diff --profile black - isort tests --check-only --diff --profile black + isort . --check-only --diff --profile black - name: Lint with black # by default: exit with error if the code is not properly formatted; show diffs uses: psf/black@stable