ktmud commented on a change in pull request #9569: Add documentation build to 
Github Actions
URL: 
https://github.com/apache/incubator-superset/pull/9569#discussion_r410450461
 
 

 ##########
 File path: .github/workflows/superset-python.yml
 ##########
 @@ -29,6 +29,25 @@ jobs:
       # `-j 0` run Pylint in parallel
       run: pylint -j 0 superset
 
+  docs:
+    runs-on: ubuntu-18.04
+    strategy:
+      matrix:
+        python-version: [3.6]
+    steps:
+    - name: Checkout code
+      uses: actions/checkout@v2
+    - name: Setup Python
+      uses: actions/setup-python@v1
+      with:
+        python-version: ${{ matrix.python-version }}
+    - name: Install dependencies
+      uses: apache-superset/cached-dependencies@adc6f73
 
 Review comment:
   Can move `pip install -r docs/requirements.txt` here:
   
   ```
       - name: Install dependencies
         uses: apache-superset/cached-dependencies@adc6f73
         with:
           run: |
             pip-install
             pip install -r docs/requirements.txt
   ```
   
   Probably save a couple of seconds for other jobs.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to