|
15 | 15 | runs-on: ubuntu-latest |
16 | 16 | steps: |
17 | 17 | - name: Checkout python-for-android |
18 | | - uses: actions/checkout@v3 |
| 18 | + uses: actions/checkout@v4 |
19 | 19 | - name: Set up Python 3.x |
20 | 20 | uses: actions/setup-python@v4 |
21 | 21 | with: |
|
36 | 36 | os: [ubuntu-latest, macOs-latest] |
37 | 37 | steps: |
38 | 38 | - name: Checkout python-for-android |
39 | | - uses: actions/checkout@v3 |
| 39 | + uses: actions/checkout@v4 |
40 | 40 | - name: Set up Python ${{ matrix.python-version }} |
41 | 41 | uses: actions/setup-python@v4 |
42 | 42 | with: |
|
70 | 70 | target: testapps-webview |
71 | 71 | - name: service_library |
72 | 72 | target: testapps-service_library-aar |
| 73 | + - name: qt |
| 74 | + target: testapps-qt |
73 | 75 | steps: |
74 | 76 | - name: Checkout python-for-android |
75 | | - uses: actions/checkout@v3 |
| 77 | + uses: actions/checkout@v4 |
76 | 78 | - name: Build python-for-android docker image |
77 | 79 | run: | |
78 | 80 | docker build --tag=kivy/python-for-android . |
@@ -121,7 +123,7 @@ jobs: |
121 | 123 | ANDROID_NDK_HOME: ${HOME}/.android/android-ndk |
122 | 124 | steps: |
123 | 125 | - name: Checkout python-for-android |
124 | | - uses: actions/checkout@v3 |
| 126 | + uses: actions/checkout@v4 |
125 | 127 | - name: Install python-for-android |
126 | 128 | run: | |
127 | 129 | source ci/osx_ci.sh |
@@ -170,7 +172,7 @@ jobs: |
170 | 172 | REBUILD_UPDATED_RECIPES_EXTRA_ARGS: --arch=${{ matrix.android_arch }} |
171 | 173 | steps: |
172 | 174 | - name: Checkout python-for-android (all-history) |
173 | | - uses: actions/checkout@v3 |
| 175 | + uses: actions/checkout@v4 |
174 | 176 | with: |
175 | 177 | fetch-depth: 0 |
176 | 178 | # helps with GitHub runner getting out of space |
@@ -206,7 +208,7 @@ jobs: |
206 | 208 | REBUILD_UPDATED_RECIPES_EXTRA_ARGS: --arch=${{ matrix.android_arch }} |
207 | 209 | steps: |
208 | 210 | - name: Checkout python-for-android (all-history) |
209 | | - uses: actions/checkout@v3 |
| 211 | + uses: actions/checkout@v4 |
210 | 212 | with: |
211 | 213 | fetch-depth: 0 |
212 | 214 | - name: Install python-for-android |
@@ -238,3 +240,17 @@ jobs: |
238 | 240 | uses: AndreMiras/coveralls-python-action@develop |
239 | 241 | with: |
240 | 242 | parallel-finished: true |
| 243 | + |
| 244 | + documentation: |
| 245 | + runs-on: ubuntu-latest |
| 246 | + steps: |
| 247 | + - uses: actions/checkout@v4 |
| 248 | + - name: Requirements |
| 249 | + run: | |
| 250 | + python -m pip install --upgrade pip |
| 251 | + pip install -r doc/requirements.txt |
| 252 | + - name: Check links |
| 253 | + run: sphinx-build -b linkcheck doc/source doc/build |
| 254 | + - name: Generate documentation |
| 255 | + run: sphinx-build doc/source doc/build |
| 256 | + |
0 commit comments