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 986470a commit 7bd2ad5Copy full SHA for 7bd2ad5
project/.github/workflows/ci.yml
@@ -48,11 +48,15 @@ jobs:
48
runs-on: ${{ matrix.os }}
49
steps:
50
- uses: actions/checkout@v4
51
+ - name: Install poetry
52
+ run: pipx install poetry
53
- name: Set up Python
54
uses: actions/setup-python@v5
55
+ id: setup-python
56
with:
57
python-version: ${{ matrix.python-version }}
- - uses: snok/[email protected]
58
+ cache: "poetry"
59
+ - run: echo "Cache hit:${{ steps.setup-python.outputs.cache-hit }}" # true if cache-hit occurred on the primary key
60
- name: Install Dependencies
61
run: poetry install
62
shell: bash
0 commit comments