sasha-s / go-deadlock

Online deadlock detection in go (golang)
Apache License 2.0
1.04k stars 76 forks source link

Support Go 1.23 #34

Closed linkdata closed 3 months ago

linkdata commented 3 months ago

Go 1.23 breaks older versions of github.com/petermattis/goid, including the one you're currently using.

I suggest you add go1.23 to your testing matrix and possibly also add a runtime init test that checks if the goid in use is working correctly or not.

Feel free to copy relevant bits from my fork: https://github.com/linkdata/deadlock

sasha-s commented 3 months ago

added go 1.23, will consider doing the runtime checks separately. Thanks.