test: add basic CI testing against PRs via new Github Action #88
+38
−165
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds a simple Github Action that runs against PRs targeting our feature branch (
validation-gen
) that does the following:go mod tidy
and verifies no files are changedCurrently this PR is should be merged after #87 and rebased to get the CI to green. I've included those changes in this PR for now to get to green, I will rebase to drop those changes once they are merged
I tested this that the Github Action runs in my k8s fork's aprindle/kubernetes
validation-gen
branch and it runs/works, see here:aaron-prindle#8
Screenshot from this PR against my k8s fork's aprindle/kubernetes
validation-gen
branch (which uses this same PR branch):Not sure why it doesn't run on this PR, I think it might related to repo or user perms related to security.
NOTE
In creating this I caught some current test issues related to
go mod tidy
and the subfield go unit and fixture tests. I fixed these in this PR as well