-
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
- Bump golang ver => 1.22.5
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
module github.com/matryer/moq | ||
|
||
go 1.18 | ||
go 1.22.5 | ||
|
||
require ( | ||
github.com/pmezard/go-difflib v1.0.0 | ||
golang.org/x/tools v0.17.0 | ||
golang.org/x/tools v0.24.0 | ||
) | ||
|
||
require golang.org/x/mod v0.14.0 // indirect | ||
require ( | ||
golang.org/x/mod v0.20.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= | ||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||
golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= | ||
golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= | ||
golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= | ||
golang.org/x/tools v0.17.0 h1:FvmRgNOcs3kOa+T20R1uhfP9F6HgG2mfxDv1vrx1Htc= | ||
golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= | ||
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0= | ||
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= | ||
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= | ||
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= | ||
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24= | ||
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ= |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/matryer/moq/pkg/moq/testpackages | ||
|
||
go 1.18 | ||
go 1.22.5 | ||
|
||
require github.com/sudo-suhas/moq-test-pkgs/somerepo v0.0.0-20200816045313-d2f573eea6c7 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package rangenum | ||
|
||
import "fmt" | ||
|
||
func DoMagic() { | ||
Check failure on line 5 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, oldstable)
Check failure on line 5 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, stable)
Check failure on line 5 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, oldstable)
|
||
for range 10 { | ||
fmt.Println("abrakadabra") | ||
} | ||
} | ||
|
||
type Magician interface { | ||
Check failure on line 11 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, oldstable)
Check failure on line 11 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, stable)
Check failure on line 11 in pkg/moq/testpackages/rangenum/rangenum.go GitHub Actions / test (ubuntu-latest, oldstable)
|
||
DoMagic() | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.