We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a758387 commit 9865db7Copy full SHA for 9865db7
.github/workflows/ci-test.yml
@@ -29,6 +29,17 @@ jobs:
29
steps:
30
- uses: actions/checkout@v4
31
32
+ - name: Free Disk Space (Ubuntu)
33
+ uses: jlumbroso/free-disk-space@main
34
+ with:
35
+ tool-cache: false
36
+ android: true
37
+ dotnet: true
38
+ haskell: true
39
+ large-packages: false
40
+ docker-images: true
41
+ swap-storage: true
42
+
43
- name: Set up Python ${{ matrix.python-version }}
44
uses: actions/setup-python@v5
45
with:
@@ -50,7 +61,7 @@ jobs:
50
61
51
62
- name: Install dependencies
52
63
run: |
53
- python -m pip install --upgrade pip wheel
64
+ python -m pip install --upgrade pip wheel setuptools
54
65
# TODO(b/232490018): Cython need to be installed separately to build pycocotools.
55
66
python -m pip install Cython -c ./test_constraints.txt
56
67
pip install \
0 commit comments