Skip to content

Commit

Permalink
show docker logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtwinkle committed Jul 26, 2023
1 parent 9b1ae5c commit 88018cf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:

- name: Setup Docker
working-directory: ${{ env.testdir }}
run: docker-compose up -d
run: |
docker-compose up -d
sleep 10
docker-compose logs
- name: Go Module Download
working-directory: ${{ env.testdir }}
Expand All @@ -47,7 +50,7 @@ jobs:
working-directory: ${{ env.testdir }}
run: |
# shellcheck disable=SC2046
gotestsum --junitfile unit-tests.xml -- -p 4 -v ./... -race -coverprofile="coverage.txt" -covermode=atomic -coverpkg=./...
gotestsum --junitfile unit-tests.xml -- -p 4 -parallel 4 -v ./... -race -coverprofile="coverage.txt" -covermode=atomic -coverpkg=./...
- uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 88018cf

Please sign in to comment.