Skip to content

Commit

Permalink
correct build/test instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry Kindall committed Apr 27, 2021
1 parent 203e5db commit 925ac8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc_source/work-with-cdk-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ If you are simply changing some default values on an existing construct or addin

## Building, synthesizing, and deploying<a name="go-running"></a>

The AWS CDK automatically compiles your app before running it\. However, it can be useful to build your app manually to check for errors and to run tests\. You can do this in your IDE \(for example, press Control\-B in Eclipse\) or by issuing `mvn compile` at a command prompt while in your project's root directory\.
The AWS CDK automatically compiles your app before running it\. However, it can be useful to build your app manually to check for errors and to run tests\. You can do this by issuing `go build` at a command prompt while in your project's root directory\.

Run any tests you've written by running `mvn test` at a command prompt\.
Run any tests you've written by running `go test` at a command prompt\.

The [stacks](stacks.md) defined in your AWS CDK app can be deployed individually or together using the commands below\. Generally, you should be in your project's main directory when you issue them\.
+ `cdk synth`: Synthesizes a AWS CloudFormation template from one or more of the stacks in your AWS CDK app\.
Expand Down

0 comments on commit 925ac8b

Please sign in to comment.