Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rakyll/govalidate
Validates your Go installation and dependencies.
https://github.com/rakyll/govalidate
golang golang-tools
Last synced: 6 days ago
JSON representation
Validates your Go installation and dependencies.
- Host: GitHub
- URL: https://github.com/rakyll/govalidate
- Owner: rakyll
- License: bsd-3-clause
- Created: 2020-01-02T19:30:34.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-23T04:25:40.000Z (12 months ago)
- Last Synced: 2024-08-02T18:39:38.290Z (3 months ago)
- Topics: golang, golang-tools
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 332
- Watchers: 10
- Forks: 20
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# govalidate
[![CircleCI](https://circleci.com/gh/rakyll/govalidate.svg?style=svg&circle-token=8ea1ac2ae17cbac9a5505d875261eb74061f8404)](https://circleci.com/gh/rakyll/govalidate)
Validates your Go installation and dependencies.
* Checks the Go installation and version.
* Checks if the PATH is correctly configured.
* Checks CGO dependencies are installed.
* Checks the plugin support for available editors.```
$ govalidate
[✔] Go (go1.13.5)
[✗] Checking if $PATH contains "/Users/jbd/go/bin"
Add "/Users/jbd/go/bin" to your $PATH.
On Unix systems:
export PATH=$PATH:/Users/jbd/go/bin
[✔] Checking gcc for CGO support
[✔] Vim Go plugin
[!] VSCode Go extension
VSCode Go extension is not installed.
See https://code.visualstudio.com/docs/languages/go to install.
```## Installation
```
$ go get -u github.com/rakyll/govalidate
```Or download one of the binaries and run:
* Linux 64-bit: https://storage.googleapis.com/jbd-releases/govalidate_linux_amd64
* macOS 64-bit: https://storage.googleapis.com/jbd-releases/govalidate_darwin_amd64
* Windows 64-bit: https://storage.googleapis.com/jbd-releases/govalidate_windows_amd64