Skip to content

Commit fb31141

Browse files
committed
Merge branch 'intro' into ndyakov/examples
2 parents 73f4132 + f493bda commit fb31141

29 files changed

+1078
-476
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: go mod tidy
2121
- name: Run tests with coverage
22-
run: go test ./... -coverprofile=./cover.out -covermode=atomic -race -count 2 -timeout 1m
22+
run: go test ./... -coverprofile=./cover.out -covermode=atomic -race -count 2 -timeout 5m
2323
- name: Upload coverage
2424
uses: actions/upload-artifact@v4
2525
with:

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
version: "2"
2+
run:
3+
tests: false
24
linters:
35
disable:
46
- depguard

.testcoverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ threshold:
1515

1616
# (optional; default 0)
1717
# Minimum coverage percentage required for each package.
18-
package: 90
18+
package: 85
1919

2020
# (optional; default 0)
2121
# Minimum overall project coverage percentage required.
22-
total: 85
22+
total: 90
2323

2424
# Holds regexp rules which will override thresholds for matched files or packages
2525
# using their paths.

0 commit comments

Comments
 (0)