An open API service indexing awesome lists of open source software.

https://github.com/willscott/gocompat

test if requirements of two go.mod's are compatible
https://github.com/willscott/gocompat

compatibility-testing golang gomodule

Last synced: about 2 months ago
JSON representation

test if requirements of two go.mod's are compatible

Awesome Lists containing this project

README

        

# gocompat

gocompat is a basic check for whether two go projects use compatible versions
of dependent libraries.

The specific use case is for development of plugins, where the versions
of libraries need to match for the plugin to be loaded at runtime.
gocompat can be used in the primary code base to get alerted on PRs if
they will cause incompatibilities between the project and external
dependencies used by plugins.