issue-98 add test analyzer results to the PR#102
issue-98 add test analyzer results to the PR#102vfrank66 wants to merge 1 commit intogoogle:mainfrom
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
8fbeb38 to
d583c1d
Compare
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version: 1.22 | ||
| cache: true |
There was a problem hiding this comment.
I believe from reading https://github.com/actions/setup-go?tab=readme-ov-file that we don't need to explicitly add caching for this action, since as of v4 caching is the default behavior.
|
|
||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| cache: true |
There was a problem hiding this comment.
Same as the above comment, seems like this is unneeded.
| - name: Get dependencies | ||
| run: | | ||
| go mod download | ||
| - name: Build |
There was a problem hiding this comment.
Genuine question, does this work? don't we still need to build everything for the analyzer to be able to run?
No description provided.