-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
documentation updates and some minor refactoring #288
Conversation
// | ||
// The function uses the crypto/rand package for secure random number | ||
// generation, suitable for cryptographic purposes. | ||
func generateAesSeed() (string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved it to a separate file.
<p>The next <strong><a href="/docs/contributor-sync/" | ||
style="text-decoration: underline; color: #0946EC" | ||
>VSecM Contributor Sync</a></strong> will be on…<br> | ||
<strong>Thursday, 2023-10-26</strong> | ||
at <strong>8:00am</strong> Pacific time.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filed an issue to dynamically generate these (from a source of truth) instead of creating a PR whenever something new is announced.
It’s not urgent, though; we can live this way for a while.
### VMware Secrets Manager Contributor Sync — 2023-09-29 | ||
|
||
<div style="padding:56.25% 0 0 0;position:relative;"><iframe | ||
src="https://player.vimeo.com/video/869636733?badge=0&autopause=0&player_id=0&app_id=58479" | ||
frameborder="0" allow="autoplay; fullscreen; picture-in-picture" | ||
style="position:absolute;top:0;left:0;width:100%;height:100%;" | ||
title="VMware Secrets Manager Contributor Sync — 2023-09-29" | ||
></iframe></div><script src="https://player.vimeo.com/api/player.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added the VOD of last session.
echo "Running Go unit tests..." | ||
if ! go test ./...; then | ||
echo "Go unit tests failed, exiting." | ||
exit 1 | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Runs unit tests before every integration test.
If unit tests are failing, there is no reason to run integration tests which are more expensive to run.
No description provided.