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 88df8a9 commit 7265147Copy full SHA for 7265147
.github/workflows/python.yml
@@ -6,9 +6,6 @@ on:
6
jobs:
7
lint:
8
runs-on: ubuntu-latest
9
- strategy:
10
- matrix:
11
- python-version: [3.8, 3.9, "3.10", "3.11"]
12
13
steps:
14
- uses: actions/checkout@v3
@@ -20,12 +17,12 @@ jobs:
20
17
21
18
- name: Set Poetry config
22
19
run: |
23
- poetry config virtualenvs.path ~/.virtualenvs${{ matrix.python-version }}
+ poetry config virtualenvs.path ~/.virtualenvs3.11
24
25
- name: Set up Python ${{ matrix.python-version }}
26
uses: actions/setup-python@v3
27
with:
28
- python-version: ${{ matrix.python-version }}
+ python-version: 3.11
29
cache: "poetry"
30
31
- name: Install dependencies
0 commit comments