Skip to content

Commit

Permalink
Test user
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Nov 7, 2024
1 parent f6e4f7b commit 4383028
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,7 @@ runs:
run: for c in {1..30}; do sleep 1 && curl -s -w '%{http_code}' -o /dev/null http://localhost:${{ env.PORT }}/healthcheck/live/ | grep -o "200" && break; done
shell: bash
- name: Check user
run: docker compose exec ${{ inputs.service }} whoami | grep "${{ inputs.expected-user }}"
run: |
docker compose exec ${{ inputs.service }} whoami
docker compose exec ${{ inputs.service }} whoami | grep "${{ inputs.expected-user }}"
shell: bash

0 comments on commit 4383028

Please sign in to comment.