From 03a5d06235fa69506b6e9edeed23f1d692159888 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sun, 15 Feb 2026 15:39:48 +0000 Subject: [PATCH] add test-golangci workflow --- .github/workflows/test-golangci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test-golangci.yml diff --git a/.github/workflows/test-golangci.yml b/.github/workflows/test-golangci.yml new file mode 100644 index 0000000..84c7cfd --- /dev/null +++ b/.github/workflows/test-golangci.yml @@ -0,0 +1,23 @@ +name: Test-CI + +on: + workflow_dispatch: + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 1 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.24' + - name: golangci-lint + uses: golangci/golangci-lint-action@v9 + with: + version: v2.6.0 + args: --config .golangci.yml