From e7ac61d7cb95e9bed6b0b1ac0fc3a2e5c79d65cb Mon Sep 17 00:00:00 2001 From: t2d Date: Tue, 23 May 2023 11:16:00 +0200 Subject: [PATCH] Allow to install from requirements.txt --- .github/workflows/ansible-integration-workflow.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ansible-integration-workflow.yaml b/.github/workflows/ansible-integration-workflow.yaml index 5545713..bb1f445 100644 --- a/.github/workflows/ansible-integration-workflow.yaml +++ b/.github/workflows/ansible-integration-workflow.yaml @@ -53,8 +53,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install ansible-lint - run: pip install ansible-lint + - name: Install (testing) requirements + run: | + echo ansible-lint >> requirements.txt + pip install -r requirements.txt - name: Install Ansible Role Requirements run: |