From 43e41cecec3a48a0ad077844b87c53762f87e5f8 Mon Sep 17 00:00:00 2001 From: Sylvain <1552102+sgaunet@users.noreply.github.com> Date: Wed, 26 Nov 2025 21:38:13 +0100 Subject: [PATCH] chore: Rename linter task to lint for consistency --- .github/workflows/linter.yml | 2 +- Taskfile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 2c176ac..6158696 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -31,4 +31,4 @@ jobs: - name: Run linter shell: /usr/bin/bash {0} run: | - task linter \ No newline at end of file + task lint \ No newline at end of file diff --git a/Taskfile.yml b/Taskfile.yml index fe644d0..c2ce926 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -15,7 +15,7 @@ tasks: - go mod download - CGO_ENABLED=0 go build . - linter: + lint: desc: "Run linters" cmds: - golangci-lint run