From fce0dc18cab9bcdaea0cd008aef10f5c8e7bceb5 Mon Sep 17 00:00:00 2001 From: kedhammar Date: Thu, 30 Nov 2023 13:02:10 +0100 Subject: [PATCH] try fixing yaml syntax error --- .github/workflows/lint-code.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/lint-code.yml b/.github/workflows/lint-code.yml index b738f24b..fc47255d 100644 --- a/.github/workflows/lint-code.yml +++ b/.github/workflows/lint-code.yml @@ -32,8 +32,7 @@ jobs: pip install isort - name: isort --> Check for best-practice sorting of imports run: | - msg="Please run 'isort .' on this repo." - isort --check . || echo "::error ::$msg" && exit 1 + isort --check . || echo "::error ::Please run 'isort .' on this repo." && exit 1 ruff-format: runs-on: ubuntu-latest