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
- Host: GitHub
- URL: https://github.com/willscott/gocompat
- Owner: willscott
- Created: 2019-07-06T01:28:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-07T02:14:01.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T04:06:11.102Z (about 1 year ago)
- Topics: compatibility-testing, golang, gomodule
- Language: Go
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.