From 4a81034b71b3257a26de48246b32c8a32512329d Mon Sep 17 00:00:00 2001 From: Denis Panfilov Date: Sun, 14 Dec 2025 12:55:01 +0100 Subject: [PATCH 1/3] Add gitignore --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e4c35b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Binaries +resetgen +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary +*.test + +# Coverage +coverage.out +coverage.html + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Debug +__debug_bin* + +# Vendor (if not committed) +# vendor/ + +# Local env +.env +.env.local From 1bb3ee29760e2874e7654cdfb0a5258d143d6369 Mon Sep 17 00:00:00 2001 From: Denis Panfilov Date: Sun, 14 Dec 2025 12:56:33 +0100 Subject: [PATCH 2/3] Changed target branch Signed-off-by: Denis Panfilov --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27135cf..619e691 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: Release on: pull_request: types: [closed] - branches: [main, master, latest] + branches: [latest] permissions: contents: write diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d98b66d..33472d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ on: pull_request: types: [opened, synchronize, reopened, ready_for_review] push: - branches: [main, master] + branches: [latest] jobs: test: From 7b6ddf0b7667ce1513932d0075c1e5001c33a635 Mon Sep 17 00:00:00 2001 From: Denis Panfilov Date: Sun, 14 Dec 2025 13:01:07 +0100 Subject: [PATCH 3/3] Fix golangci-lint for Go 1.25 --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33472d9..29f9424 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,6 +20,4 @@ jobs: run: go test -race -cover ./... - name: Run linter - uses: golangci/golangci-lint-action@v6 - with: - version: latest + uses: golangci/golangci-lint-action@v9