From 00c2980d3fb794ca642a258fe5ca19f5d3385d15 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Fri, 15 Mar 2024 11:16:14 +0530 Subject: [PATCH] CI: Use make lint instead of lint action Since we already have `lint` target in the makefile which uses golanglint and current workflow have outdated action for it. Better to have same way to run linter either local or on CI. --- .github/workflows/make.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 545bcb15..2991fe63 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -24,7 +24,7 @@ jobs: - name: Build run: make cross - name: lint - uses: golangci/golangci-lint-action@v3 + run: make lint - name: Tests run: make test - name: Upload artifats