We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107c63d commit bbcaa20Copy full SHA for bbcaa20
.github/workflows/cicd.yaml
@@ -46,16 +46,14 @@ jobs:
46
- name: Setup Task
47
uses: arduino/setup-task@v1
48
49
+ # based on https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages
50
+ - name: Install poetry
51
+ run: pipx install poetry
52
- name: Setup Python
53
uses: actions/setup-python@v4
54
with:
- python-version: 3.9
-
- - uses: Gr1N/setup-poetry@v8
55
- - uses: actions/cache@v2
56
- with:
57
- path: ~/.cache/pypoetry/virtualenvs
58
- key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
+ python-version-file: ".python-version"
+ cache: poetry
59
60
- name: Setup package
61
run: task setup
0 commit comments