-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upd(ci): allow authenticated dependency installation
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,15 @@ jobs: | |
steps: | ||
- checkout | ||
|
||
- add_ssh_keys: | ||
fingerprints: | ||
- "16:26:c9:af:c0:c6:27:08:be:31:b5:36:40:71:63:44" | ||
|
||
# lock in authentication for Github modules via ssh | ||
- run: git config --global --add url."[email protected]:".insteadOf "https://github.com/" | ||
|
||
# disable checksum checking via Go on private Meroxa repositories | ||
- run: go env -w GOPRIVATE=github.com/meroxa/* | ||
|
||
# specify any bash command here prefixed with `run: ` | ||
- run: go test -mod=vendor -v -race ./... |