-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ldez/feat/improve
- Loading branch information
Showing
6 changed files
with
170 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Lint | ||
uses: golangci/[email protected] | ||
with: | ||
version: latest | ||
args: --timeout 5m | ||
|
||
- name: Go Format | ||
run: gofmt -s -w . && git diff --exit-code | ||
|
||
- name: Go Tidy | ||
run: go mod tidy && git diff --exit-code | ||
|
||
- name: Go Mod | ||
run: go mod download | ||
|
||
- name: Go Build | ||
run: go build -v ./... | ||
|
||
- name: Go Test | ||
run: go test -v -race ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,123 @@ | ||
package a | ||
|
||
type _ interface { // want "length of interface greater than 10" | ||
a() | ||
b() | ||
c() | ||
d() | ||
f() | ||
g() | ||
h() | ||
i() | ||
j() | ||
k() | ||
l() | ||
} | ||
|
||
func _() { | ||
var _ interface { // want "length of interface greater than 10" | ||
a() | ||
b() | ||
c() | ||
d() | ||
f() | ||
g() | ||
h() | ||
i() | ||
j() | ||
k() | ||
l() | ||
type Example01 interface { // want "the interface has more than 10 methods: 11" | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} | ||
|
||
func Example02() { | ||
var _ interface { // want "the interface has more than 10 methods: 11" | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} | ||
} | ||
|
||
func Example03() interface { // want "the interface has more than 10 methods: 11" | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} { | ||
return nil | ||
} | ||
|
||
type Example04 struct { | ||
Foo interface { // want "the interface has more than 10 methods: 11" | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} | ||
} | ||
|
||
type Small01 interface { | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
} | ||
|
||
type Small02 interface { | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} | ||
|
||
type Example05 interface { | ||
Small01 | ||
Small02 | ||
} | ||
|
||
type Example06 interface { | ||
interface { // want "the interface has more than 10 methods: 11" | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
a11() | ||
} | ||
} | ||
|
||
func __() interface { // want "length of interface greater than 10" | ||
a() | ||
b() | ||
c() | ||
d() | ||
f() | ||
g() | ||
h() | ||
i() | ||
j() | ||
k() | ||
l() | ||
type TypeGeneric interface { | ||
~uint8 | ~uint16 | ~uint32 | ~uint64 | uint | | ||
~int8 | ~int16 | ~int32 | ~int64 | int | | ||
~float32 | ~float64 | | ||
~string | ||
} | ||
|
||
func ExampleNoProblem() interface { | ||
a01() | ||
a02() | ||
a03() | ||
a04() | ||
a05() | ||
a06() | ||
a07() | ||
a08() | ||
a09() | ||
a10() | ||
} { | ||
return nil | ||
} |