Skip to content

Commit

Permalink
Fix working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lvps committed Apr 5, 2024
1 parent b7ee2cd commit 38e8359
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,14 @@ jobs:
run: |
sudo apt-get install -y libsasl2-dev python-dev-is-python3 libldap2-dev libssl-dev
- name: Install dependencies
working-directory: ./aci
run: |
cd aci && pip install -r requirements.txt
pip install -r requirements.txt
- name: Generate ACIs
working-directory: ./aci
run: |
cd aci && python make_aci.py $TEST_SUFFIX
python make_aci.py $TEST_SUFFIX
- name: Run test script
working-directory: ./aci
run: |
cd aci && python ci_test_acis.py
python ci_test_acis.py

0 comments on commit 38e8359

Please sign in to comment.