Skip to content

Commit

Permalink
馃梼 Enable pip cache in other workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Nov 27, 2022
1 parent 95ee219 commit 11a3593
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-docs.yml
Expand Up @@ -18,6 +18,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.7"
cache: "pip"
cache-dependency-path: pyproject.toml
- uses: actions/cache@v3
id: cache
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Expand Up @@ -18,6 +18,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.7"
cache: "pip"
cache-dependency-path: pyproject.toml
- uses: actions/cache@v3
id: cache
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/smokeshow.yml
Expand Up @@ -17,6 +17,8 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: "pip"
cache-dependency-path: pyproject.toml

- run: pip install smokeshow

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -54,6 +54,8 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: "pip"
cache-dependency-path: pyproject.toml

- name: Get coverage files
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 11a3593

Please sign in to comment.