Skip to content

Commit

Permalink
Add dependency caching step to tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tanertopal committed Jun 28, 2023
1 parent 31c00d8 commit 1f630d0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/flower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: |
**/poetry.lock
~/.cache/pypoetry
key: poetry-cache-${{ matrix.python }}-${{ hashFiles('**/pyproject.toml') }}
- name: Install build tools
run: |
python -m pip install -U pip==23.1.2
Expand Down

0 comments on commit 1f630d0

Please sign in to comment.