We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7625a commit e73984eCopy full SHA for e73984e
1 file changed
.github/workflows/pylint.yml
@@ -12,14 +12,24 @@ jobs:
12
python-version: ["3.9", "3.10"]
13
steps:
14
- uses: actions/checkout@v4
15
+
16
- name: Set up Python ${{ matrix.python-version }}
17
uses: actions/setup-python@v3
18
with:
19
python-version: ${{ matrix.python-version }}
- - uses: snok/install-poetry@v1
20
21
+ - name: Install Poetry
22
+ uses: snok/install-poetry@v1
23
+ with:
24
+ virtualenvs-create: true
25
+ virtualenvs-in-project: true
26
+ virtualenvs-path: .venv
27
+ installer-parallel: true
28
29
- name: Install dependencies
30
run: |
31
poetry install --no-interaction
32
33
- name: Analysing the code with pylint
34
35
source .venv/bin/activate
0 commit comments