From 0e2a20d24387c3115645b3e29243ae70f84070f6 Mon Sep 17 00:00:00 2001 From: "anatoly.shipitz" Date: Thu, 17 Apr 2025 12:29:25 +0200 Subject: [PATCH 1/2] Refactor code quality workflow to explicitly name checkout step and ensure linting runs correctly --- .github/workflows/code-quality.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index d7c8e80..9b6bfc1 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -12,6 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Lint - run: echo "Linting..." \ No newline at end of file + - name: Checkout + uses: actions/checkout@v4 + - name: Lint + run: echo "Linting..." \ No newline at end of file From e9bdac934953eb4eb2069c5ad1d75d4e57f05717 Mon Sep 17 00:00:00 2001 From: "anatoly.shipitz" Date: Thu, 17 Apr 2025 12:34:12 +0200 Subject: [PATCH 2/2] Rename test job to lint in code quality workflow for clarity --- .github/workflows/code-quality.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 9b6bfc1..5f4ea34 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -8,7 +8,7 @@ on: - main jobs: - test: + lint: runs-on: ubuntu-latest steps: