From c9bcb16cdf737317e4beb082d3c06e20bf4c2a1d Mon Sep 17 00:00:00 2001 From: James Robinson Date: Tue, 24 Sep 2024 12:36:41 +0100 Subject: [PATCH] :bug: Add python-ldap libraries --- .github/workflows/test_code.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_code.yaml b/.github/workflows/test_code.yaml index 3795915..03e89a1 100644 --- a/.github/workflows/test_code.yaml +++ b/.github/workflows/test_code.yaml @@ -8,7 +8,7 @@ on: # yamllint disable-line rule:truthy pull_request: jobs: - test_bash: + test_code: runs-on: ubuntu-latest steps: - name: Checkout code @@ -22,6 +22,12 @@ jobs: - name: Install hatch run: pip install hatch + - name: Install requirements + run: | + apt-get install \ + libldap2-dev \ + libsasl2-dev + - name: Test Python run: hatch run test:all