From b92aa1a0f0a63afaa6001d9547d623c39a014785 Mon Sep 17 00:00:00 2001 From: Alexandr Savca Date: Thu, 3 Aug 2023 18:23:51 +0300 Subject: [PATCH] lint.yml: fix linter, change name --- .github/workflows/lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index eab7f76..22bcba9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: Build CI +name: Lint CI on: push: @@ -17,9 +17,9 @@ jobs: run: sudo apt-get install -y shellcheck - name: Check shell scripts for errors - run: make -f utils.mk shellcheck + run: make -f Makefile.lint shellcheck - name: Check PODs for errors - run: make -f utils.mk podchecker + run: make -f Makefile.lint podchecker # End of file.