Skip to content

Bump dependencies

Bump dependencies #28

Triggered via pull request July 21, 2025 23:16
Status Failure
Total duration 45s
Artifacts

lint.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors
lint: marshal.go#L263
avoid inline error handling using `if err := ...; err != nil`; use plain assignment `err := ...` (noinlineerr)
lint: marshal.go#L245
avoid inline error handling using `if err := ...; err != nil`; use plain assignment `err := ...` (noinlineerr)
lint: import.go#L15
avoid inline error handling using `if err := ...; err != nil`; use plain assignment `err := ...` (noinlineerr)
lint: error.go#L35
avoid inline error handling using `if err := ...; err != nil`; use plain assignment `err := ...` (noinlineerr)
lint: tuple.go#L74
constructor "NewTupleObject" for struct "TupleObject" should be placed before struct method "DecRef" (funcorder)
lint: object.go#L92
constructor "NewObject" for struct "Object" should be placed before struct method "DecRef" (funcorder)
lint: list.go#L68
constructor "NewListObject" for struct "ListObject" should be placed before struct method "DecRef" (funcorder)
lint: error.go#L91
constructor "NewException" for struct "Exception" should be placed before struct method "Error" (funcorder)
lint: marshal.go#L168
missing cases in switch of type reflect.Kind: reflect.Invalid, reflect.Uintptr, reflect.Complex64, reflect.Complex128, reflect.Array, reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Struct, reflect.UnsafePointer (exhaustive)
lint: marshal.go#L92
do not define dynamic errors, use wrapped static errors instead: "fmt.Errorf(\"cannot marshal value of %T to python object\", v)" (err113)