Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 809 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (13 loc) · 809 Bytes

Contributing

Instructions for contributing to plaid-go. A go client library for the Plaid API. This library is fully generated from the Plaid OpenAPI spec. The library is generated internally, so don't try to iterate from this repo.

Running Tests

  1. To build the docker image for the client tests, run docker build -t plaid-go ..
  2. Go to the Plaid Dashboard and copy and paste your client_id and sandbox secret into the following command.
  3. Run docker run --rm -e CLIENT_ID=$CLIENT_ID -e SECRET=$SECRET plaid-go.

If you wish to run a single test, do something like this:

CLIENT_ID="" SECRET="" go test -v ./... -run TESTNAME