-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: DanRoscigno <[email protected]>
- Loading branch information
1 parent
a5c83d0
commit 9b4670c
Showing
2 changed files
with
12 additions
and
11 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 |
---|---|---|
|
@@ -18,13 +18,6 @@ jobs: | |
# - the Ginkgo/Gomega test system | ||
- uses: actions/checkout@v3 | ||
|
||
# This compose action will deploy StarRocks | ||
# in Docker using the compose file in this repo | ||
- name: Start StarRocks | ||
uses: isbang/[email protected] | ||
with: | ||
compose-file: "./docker-compose.yml" | ||
|
||
- name: Set up Golang | ||
uses: actions/setup-go@v5 | ||
with: | ||
|
@@ -38,6 +31,14 @@ jobs: | |
- name: Build | ||
run: go build -v ./... | ||
|
||
# This compose step will deploy StarRocks | ||
# in Docker using the compose file in this repo | ||
# docker compose will return when both services | ||
# are healthy. The max time docker compose will | ||
# wait is 60 seconds. | ||
- name: Start StarRocks | ||
run: docker compose up --detach --wait --wait-timeout 60 | ||
|
||
- name: Test | ||
run: ginkgo -vv | ||
env: | ||
|
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