Skip to content

Commit aeb1736

Browse files
committed
Add GPLv3 LICENSE and update CI golangci-lint step
Add full GNU General Public License v3 (LICENSE) to the repo. Update .github/workflows/ci.yml to install golangci-lint via `go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6` and run the linter directly (`golangci-lint run`) instead of using the golangci/golangci-lint-action.
1 parent ff9b122 commit aeb1736

2 files changed

Lines changed: 678 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
with:
4444
go-version: "1.25"
4545

46+
- name: Install golangci-lint
47+
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6
48+
4649
- name: golangci-lint
47-
uses: golangci/golangci-lint-action@v7
48-
with:
49-
version: v2.1.6
50+
run: golangci-lint run

0 commit comments

Comments
 (0)