Skip to content

Commit

Permalink
Fix CI failure #21
Browse files Browse the repository at this point in the history
  • Loading branch information
VKTB committed Feb 1, 2024
1 parent 82faa1a commit f838641
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install python-ldap system dependencies
run: sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev
run: |
sudo apt-get update
sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev
- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
Expand All @@ -41,7 +43,9 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install python-ldap system dependencies
run: sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev
run: |
sudo apt-get update
sudo apt-get install -y libsasl2-dev python3-dev libldap2-dev libssl-dev
- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
Expand Down

0 comments on commit f838641

Please sign in to comment.