go-circleci
is a Go library that
I wrote to wrap CircleCI’s API. It can be used
by other Go projects that wish to interact with the API.
CircleCI is a continuous integration service that you can use with your GitHub projects to automatically build and test your code.
The library API itself mirrors closely the endpoints exposed by CircleCI, you can see the GoDoc page for the latest documentation.
Installing
- Set up your Go build environment
go get github.com/jszwedko/go-circleci
- In your project, import the library via
import "github.com/jszwedko/go-circleci"