Skip to content

Commit

Permalink
Attempt to accelerate CI by caching python dependencies installation
Browse files Browse the repository at this point in the history
  • Loading branch information
pebeto committed May 21, 2024
1 parent 550551b commit d5911d6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10.13'
- name: Cache Python packages
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup mlflow locally
run: |
pip install mlflow
Expand Down

0 comments on commit d5911d6

Please sign in to comment.