From acc551296dc87471697bdf316610723fd8e58a9b Mon Sep 17 00:00:00 2001 From: Mike Reiche Date: Mon, 19 Aug 2024 21:36:09 +0200 Subject: [PATCH] Install Python and requirements --- .github/workflows/integration-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index c8eb603..c1e5bcb 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -37,6 +37,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: "3.11" + - name: Install dependencies of all modules + run: pip install -r requirements.txt - name: Test with pytest env: PAF_TEST_HEADLESS: 1