Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
docker-registry: ${{ secrets.CUSTOM_CONTAINER_REGISTRY }}

- name: Verify Docker is running
if: runner.os == 'Linux'
run: docker info

- name: Build test project
Expand Down Expand Up @@ -126,7 +127,7 @@ jobs:
CUSTOM_CONTAINER_REGISTRY: ${{ secrets.CUSTOM_CONTAINER_REGISTRY }}

- name: Dump docker info
if: always()
if: always() && runner.os == 'Linux'
run: |
docker container ls --all
docker container ls --all --format json
Expand Down
Loading