Skip to content

Commit 9de84ae

Browse files
committed
chore: use poetry action instead of running pip install command in workflow
1 parent 6cc24c4 commit 9de84ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run-unittests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
python-version: ${{ matrix.python-version }}
3030

3131
- name: Install Poetry
32-
run: |
33-
python -m pip install --upgrade pip
34-
pip install poetry
32+
uses: abatilo/actions-poetry@v2
33+
with:
34+
poetry-version: "2.1.4"
3535

3636
- name: Install dependencies
3737
run: poetry install --with dev

0 commit comments

Comments
 (0)