Skip to content
Merged
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
executors:
go:
docker:
- image: cimg/go:1.19
- image: cimg/go:1.23

jobs:
build:
Expand All @@ -28,7 +28,7 @@ jobs:
PACKAGE_NAMES=$(go list ./... | circleci tests split --split-by=timings --timings-type=classname)
gotestsum --junitfile ${TEST_RESULTS}/gotestsum-report.xml -- \
-race -covermode=atomic -coverprofile=coverage.out $PACKAGE_NAMES
go install golang.org/x/vuln/cmd/govulncheck@v1.0.4
go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
govulncheck ./...

- codecov/upload
Expand Down
2 changes: 2 additions & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ linters:
disable:
- cyclop
- gocognit
- depguard
- dogsled
- errorlint
- exhaustivestruct
- exhaustruct
- funlen
- importas
- interfacer
- intrange
- ireturn
- gochecknoglobals
- gochecknoinits
Expand Down
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
module moqueries.org/runtime

go 1.19
go 1.23.0

toolchain go1.24.1

require moqueries.org/deephash v0.26.0

require golang.org/x/text v0.16.0
require golang.org/x/text v0.23.0
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
moqueries.org/deephash v0.26.0 h1:KvMnNvb/N9lId0OOO1X6Yp2BifVuDuJJQH3epAeF178=
moqueries.org/deephash v0.26.0/go.mod h1:brwHe2Ks78ZEA1xIgUTEy0gtZfO7tJTqXT9haTdIRNE=