Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Close Stale Issues"
on:
schedule:
- cron: "0 0 * * 3"
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
Expand All @@ -20,7 +20,7 @@ jobs:
<br><br>
Спасибо!
close-issue-message: "Issue был закрыт из-за отсутствия активности."
days-before-stale: 120
days-before-stale: 30
days-before-close: 7
operations-per-run: 1000
ascending: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.5"
go-version: "1.26.2"

# Install Android NDK only for android rows
- name: Setup Android NDK
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/.golangci.yml → .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
version: "2"
run:
modules-download-mode: readonly
relative-path-mode: gomod
tests: true
linters:
enable:
- bodyclose
- errcheck
- govet
- ineffassign
- misspell
- revive
- staticcheck
- unused
settings:
errcheck:
check-type-assertions: true
check-blank: true
exclude-functions:
- (net.PacketConn).WriteTo
- (net.Conn).Write
- (net.Conn).SetDeadline
- encoding/json.MarshalIndent
- (*github.com/pion/dtls/v3.Conn).SetDeadline
govet:
disable:
- fieldalignment
enable-all: true
revive:
rules:
- name: blank-imports
Expand Down Expand Up @@ -52,10 +59,7 @@ linters:
issues:
max-issues-per-linter: 0
max-same-issues: 0
exclude-rules:
- linters:
- errcheck
source: "doRequest|packetPool\\.Get"

formatters:
exclusions:
generated: lax
Expand Down
Loading