Skip to content

Commit

Permalink
ENHANCE: Cache GitHub Actions pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ucokzeko committed Aug 30, 2022
1 parent ae95285 commit c29bd2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.7.5"
cache: 'pip'
cache-dependency-path: '**/requirements.txt'
- name: Install tox
run: |
# Install tox
Expand All @@ -46,9 +48,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.7.5"
cache: 'pip'
cache-dependency-path: '**/requirements.txt'
- name: Install tox
run: |
# Install tox
Expand Down

0 comments on commit c29bd2c

Please sign in to comment.