We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7977c commit 5d30a84Copy full SHA for 5d30a84
.github/workflows/pythonpackage.yml
@@ -90,9 +90,23 @@ jobs:
90
- uses: actions/setup-python@v1
91
with:
92
python-version: 3.7
93
+ - name: Cache PIP
94
+ uses: actions/cache@v1
95
+ with:
96
+ path: ~/.cache/pip
97
+ key: ${{ runner.os }}-pip-3.7-${{ hashFiles('**/poetry.lock') }}
98
+ restore-keys: |
99
+ ${{ runner.os }}-pip-3.7-
100
+ ${{ runner.os }}-pip-
101
+ - name: Cache Poetry Virtualenvs
102
103
104
+ path: ~/.cache/pypoetry/virtualenvs
105
+ key: ${{ runner.os }}-poetry-3.7-${{ hashFiles('**/poetry.lock') }}
106
- name: Build release
107
run: |
108
python -m pip install --upgrade pip poetry
109
+ make POETRY_EXTRAS= init_by_poetry
110
make build
111
- name: Upload release
112
uses: actions/upload-artifact@v1
0 commit comments