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 e361130 commit 4b01be4Copy full SHA for 4b01be4
.github/workflows/python-package.yml
@@ -26,6 +26,8 @@ jobs:
26
27
- name: Install poetry
28
uses: abatilo/actions-poetry@v2
29
+ with:
30
+ poetry-version: ${{ matrix.poetry-version }}
31
32
- uses: actions/cache@v3
33
name: Define a cache for the virtual environment based on the dependencies lock file
@@ -34,7 +36,7 @@ jobs:
34
36
key: venv-${{ hashFiles('poetry.lock') }}
35
37
38
- name: Install the project dependencies
- run: poetry install
39
+ run: poetry install --extras "strawberry-graphql"
40
41
- name: Lint with flake8
42
run: |
0 commit comments