Skip to content

Commit

Permalink
Fix the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Apr 12, 2024
1 parent b2391c2 commit f5a84a0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,16 @@ jobs:
with:
cache: pip
python-version: 3.12
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.ivy2/cache
key: ${{runner.os}}-ivy-${{hashFiles('**/ivy.xml')}}
restore-keys: ${{runner.os}}-ivy-
- name: Install dependencies
run: pip install --requirement=etc/requirements.txt
run: |
ant install
pip install --requirement=etc/requirements.txt
- name: Deploy documentation
run: |
ant doc
Expand Down

0 comments on commit f5a84a0

Please sign in to comment.