@@ -21,15 +21,13 @@ jobs:
2121 working-directory : ${{ matrix.lib }}
2222 steps :
2323 - uses : actions/checkout@v4
24+ - name : Install poetry
25+ run : pipx install poetry
2426 - name : Set up Python
2527 uses : actions/setup-python@v5
2628 with :
2729 python-version : ${{ matrix.python-version }}
2830 cache : " poetry"
29- - name : Install poetry
30- run : |
31- pip install poetry
32- poetry --version
3331 - name : Install dependencies and library
3432 run : poetry install
3533 - name : Check format
@@ -48,15 +46,13 @@ jobs:
4846 working-directory : ${{ matrix.lib }}
4947 steps :
5048 - uses : actions/checkout@v4
49+ - name : Install poetry
50+ run : pipx install poetry
5151 - name : Set up Python
5252 uses : actions/setup-python@v5
5353 with :
5454 python-version : ${{ matrix.python-version }}
5555 cache : " poetry"
56- - name : Install poetry
57- run : |
58- pip install poetry
59- poetry --version
6056 - name : Install dependencies and library
6157 run : poetry install
6258 - name : Check typing
@@ -75,15 +71,13 @@ jobs:
7571 working-directory : ${{ matrix.lib }}
7672 steps :
7773 - uses : actions/checkout@v4
74+ - name : Install poetry
75+ run : pipx install poetry
7876 - name : Set up Python
7977 uses : actions/setup-python@v5
8078 with :
8179 python-version : ${{ matrix.python-version }}
8280 cache : " poetry"
83- - name : Install poetry
84- run : |
85- pip install poetry
86- poetry --version
8781 - name : Install dependencies and library
8882 run : poetry install
8983 # We ignore the following rules for now:
@@ -105,15 +99,13 @@ jobs:
10599 working-directory : ${{ matrix.lib }}
106100 steps :
107101 - uses : actions/checkout@v4
102+ - name : Install poetry
103+ run : pipx install poetry
108104 - name : Set up Python
109105 uses : actions/setup-python@v5
110106 with :
111107 python-version : ${{ matrix.python-version }}
112108 cache : " poetry"
113- - name : Install poetry
114- run : |
115- pip install poetry
116- poetry --version
117109 - name : Install dependencies and library
118110 run : poetry install
119111 - name : Run tests
0 commit comments