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 7746abc commit 0b967dcCopy full SHA for 0b967dc
.github/workflows/test_actions.yml
@@ -230,10 +230,12 @@ jobs:
230
uses: ./setup-poetry
231
- name: Create project
232
run: poetry new test-project
233
- - name: Create poetry.lock
234
- run: poetry lock -C test-project
+ - name: Set compatible Python version in pyproject.toml
+ run: poetry env use 3.11 -C test-project
235
- name: Add ni-python-styleguide to the project
236
run: poetry add ni-python-styleguide -C test-project
237
+ - name: Create poetry.lock
238
+ run: poetry lock -C test-project
239
- name: Check that the project was created
240
run: |
241
if [ ! -f test-project/pyproject.toml ]; then
0 commit comments