From a21ab7f3c46af34fbd3ce99498e4743c69f04ce3 Mon Sep 17 00:00:00 2001 From: "Julian.Endres" Date: Wed, 16 Aug 2023 16:37:42 +0200 Subject: [PATCH] Add if always for linter steps --- .github/workflows/linter.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 4ffb372..107c1be 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -27,8 +27,14 @@ jobs: - name: Install Python dependencies run: pip install black flake8 isort - - name: Lint - run: | - black --check . - flake8 data_adapter_oemof tests - isort --verbose --check-only --diff data_adapter_oemof tests \ No newline at end of file + - name: Black + if: always() + run: black --check . + + - name: flake8 + if: always() + run: flake8 data_adapter_oemof tests + + - name: isort + if: always() + run: isort --verbose --check-only --diff data_adapter_oemof tests \ No newline at end of file