From 1a8eacf0d4d78026a1332c9190b3eedabf7eadf6 Mon Sep 17 00:00:00 2001 From: Sylvain <1552102+sgaunet@users.noreply.github.com> Date: Wed, 26 Nov 2025 21:22:21 +0100 Subject: [PATCH] chore: rename linter task to lint in Taskfile and update linter workflow --- .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 df69d79..b4f0e98 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 725c195..69d90e0 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -37,7 +37,7 @@ tasks: cmds: - go test -v -run "TestIntegration" ./... - linter: + lint: desc: "Run linter" cmds: - golangci-lint run