|
56 | 56 | - name: Install uv
|
57 | 57 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
58 | 58 | - name: Checkout pydantic
|
59 |
| - run: git clone https://github.com/pydantic/pydantic.git |
| 59 | + run: git clone --depth=1 https://github.com/pydantic/pydantic.git || git clone --depth=1 https://github.com/pydantic/pydantic.git |
60 | 60 | - name: Checkout typing_extensions
|
61 | 61 | uses: actions/checkout@v4
|
62 | 62 | with:
|
|
96 | 96 | - name: Install uv
|
97 | 97 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
98 | 98 | - name: Checkout typing_inspect
|
99 |
| - run: git clone https://github.com/ilevkivskyi/typing_inspect.git |
| 99 | + run: git clone --depth=1 https://github.com/ilevkivskyi/typing_inspect.git || git clone --depth=1 https://github.com/ilevkivskyi/typing_inspect.git |
100 | 100 | - name: Checkout typing_extensions
|
101 | 101 | uses: actions/checkout@v4
|
102 | 102 | with:
|
@@ -142,7 +142,7 @@ jobs:
|
142 | 142 | - name: Install uv
|
143 | 143 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
144 | 144 | - name: Check out pyanalyze
|
145 |
| - run: git clone https://github.com/quora/pyanalyze.git |
| 145 | + run: git clone --depth=1 https://github.com/quora/pyanalyze.git || git clone --depth=1 https://github.com/quora/pyanalyze.git |
146 | 146 | - name: Checkout typing_extensions
|
147 | 147 | uses: actions/checkout@v4
|
148 | 148 | with:
|
@@ -188,7 +188,7 @@ jobs:
|
188 | 188 | - name: Install uv
|
189 | 189 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
190 | 190 | - name: Check out typeguard
|
191 |
| - run: git clone https://github.com/agronholm/typeguard.git |
| 191 | + run: git clone --depth=1 https://github.com/agronholm/typeguard.git || git clone --depth=1 https://github.com/agronholm/typeguard.git |
192 | 192 | - name: Checkout typing_extensions
|
193 | 193 | uses: actions/checkout@v4
|
194 | 194 | with:
|
@@ -234,7 +234,7 @@ jobs:
|
234 | 234 | - name: Install uv
|
235 | 235 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
236 | 236 | - name: Check out typed-argument-parser
|
237 |
| - run: git clone https://github.com/swansonk14/typed-argument-parser.git |
| 237 | + run: git clone --depth=1 https://github.com/swansonk14/typed-argument-parser.git || git clone --depth=1 https://github.com/swansonk14/typed-argument-parser.git |
238 | 238 | - name: Checkout typing_extensions
|
239 | 239 | uses: actions/checkout@v4
|
240 | 240 | with:
|
@@ -287,7 +287,7 @@ jobs:
|
287 | 287 | - name: Install uv
|
288 | 288 | run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
289 | 289 | - name: Checkout mypy for stubtest and mypyc tests
|
290 |
| - run: git clone https://github.com/python/mypy.git |
| 290 | + run: git clone --depth=1 https://github.com/python/mypy.git || git clone --depth=1 https://github.com/python/mypy.git |
291 | 291 | - name: Checkout typing_extensions
|
292 | 292 | uses: actions/checkout@v4
|
293 | 293 | with:
|
@@ -332,7 +332,7 @@ jobs:
|
332 | 332 | with:
|
333 | 333 | python-version: ${{ matrix.python-version }}
|
334 | 334 | - name: Checkout cattrs
|
335 |
| - run: git clone https://github.com/python-attrs/cattrs.git |
| 335 | + run: git clone --depth=1 https://github.com/python-attrs/cattrs.git || git clone --depth=1 https://github.com/python-attrs/cattrs.git |
336 | 336 | - name: Checkout typing_extensions
|
337 | 337 | uses: actions/checkout@v4
|
338 | 338 | with:
|
|
0 commit comments