From 86ec69b8c28cf130f550b92403f97d6b1752e342 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Wed, 19 May 2021 16:29:42 +0200 Subject: [PATCH] .github/workflows/docs.yml: Enable verbose mode for ansible-doc-test Currently ansible-doc-test is run silently. There is no output about the checked files in the test results. Therefore verbose mode has been enabled. --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2b7f782e..f2f7c8a1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,5 +28,5 @@ jobs: - name: Run ansible-doc-test run: | python -m pip install ansible - ANSIBLE_LIBRARY="." python utils/ansible-doc-test roles plugins + ANSIBLE_LIBRARY="." python utils/ansible-doc-test -v roles plugins -- GitLab