We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c46bed commit 3e09cf8Copy full SHA for 3e09cf8
.github/workflows/python-package.yml
@@ -15,13 +15,14 @@ jobs:
15
16
steps:
17
- uses: actions/checkout@v3
18
+ # Poetry has to be installed before setting up Python with a cache
19
+ - name: Install poetry
20
+ run: pipx install poetry
21
- name: Set up Python ${{ matrix.python-version }}
22
uses: actions/setup-python@v4
23
with:
24
python-version: ${{ matrix.python-version }}
25
cache: poetry
- - name: Install poetry
- run: pipx install poetry
26
- name: Install dependencies
27
run: poetry install --no-interaction
28
- name: Lint
0 commit comments