Skip to content

Commit

Permalink
add caching to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantisan committed Sep 12, 2023
1 parent f11c8a5 commit 4ef36b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/backend-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: '**/requirements/dev.txt'

- name: Install dependencies
run: |
python -m pip install --upgrade -r requirements/dev.txt
pip install -r requirements/dev.txt
- name: Test with pytest
env:
Expand Down

0 comments on commit 4ef36b5

Please sign in to comment.