-
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.
General Maintenance + Deprecate Conversational Endpoint (for now) (#32)
* Added build script * Fixed go vet issue * Added vet step to unit tests workflow * Added build-examples script * Updated image_segmentation model * Disabled conversational test for now * Deprecated conversational endpoint for now
- Loading branch information
Showing
8 changed files
with
45 additions
and
3 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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
pushd "$(dirname "${BASH_SOURCE[0]}")/../examples" >/dev/null | ||
|
||
for d in */; do | ||
pushd "${d}" >/dev/null | ||
echo "Building ${d}" | ||
go build | ||
popd >/dev/null | ||
done |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
pushd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null | ||
|
||
./build-examples.sh | ||
|
||
pushd .. >/dev/null | ||
echo "Formatting code..." | ||
go fmt ./... | ||
echo "Building $(basename "$(pwd)")" | ||
go build ./... | ||
echo "Vetting..." | ||
go vet ./... | ||
echo "Running tests..." | ||
go test ./... | ||
echo "Done." |