diff --git a/.gitea/workflows/pull-request-open.yml b/.gitea/workflows/pull-request-open.yml index 264c8d0..4ab33eb 100644 --- a/.gitea/workflows/pull-request-open.yml +++ b/.gitea/workflows/pull-request-open.yml @@ -47,8 +47,11 @@ jobs: working-directory: ${{ gitea.workspace }} - name: Run ansible unit tests - uses: ansible-community/ansible-test-gh-action@release/v1 - with: - ansible-core-version: v2.17.4 - testing-type: units - collection-src-directory: ${{ gitea.workspace }} + run: ansible-test units --coverage + shell: bash + working-directory: ${{ gitea.workspace }} + + - name: Print coverage informations + run: ansible-test coverage report + shell: bash + working-directory: ${{ gitea.workspace }}