Skip to content

Commit c13b849

Browse files
authored
Merge branch 'sashabaranov:master' into master
2 parents bb4bf7f + f71d1a6 commit c13b849

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3727
-857
lines changed

.codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
coverage:
2+
ignore:
3+
- "examples/**"
4+
- "internal/test/**"

.github/workflows/pr.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ jobs:
1313
- name: Setup Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: '1.21'
16+
go-version: '1.24'
1717
- name: Run vet
1818
run: |
19-
go vet .
19+
go vet -stdversion ./...
2020
- name: Run golangci-lint
21-
uses: golangci/golangci-lint-action@v4
21+
uses: golangci/golangci-lint-action@v7
2222
with:
23-
version: latest
23+
version: v2.1.5
2424
- name: Run tests
25-
run: go test -race -covermode=atomic -coverprofile=coverage.out -v .
25+
run: go test -race -covermode=atomic -coverprofile=coverage.out -v ./...
2626
- name: Upload coverage reports to Codecov
27-
uses: codecov/codecov-action@v4
27+
uses: codecov/codecov-action@v5
28+
with:
29+
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@
1616

1717
# Auth token for tests
1818
.openai-token
19-
.idea
19+
.idea
20+
21+
# Generated by tests
22+
test.mp3

0 commit comments

Comments
 (0)