Skip to content

Commit

Permalink
Add cache capability to github workflow application
Browse files Browse the repository at this point in the history
  • Loading branch information
knakamura13 committed Aug 4, 2024
1 parent 8eeb720 commit 2520121
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: 'pip'
cache-dependency-path: setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 2520121

Please sign in to comment.