bito-code-review[bot] commented on PR #42256:
URL: https://github.com/apache/superset/pull/42256#issuecomment-5109995411

   <!-- Bito Reply -->
   The workflow file `.github/workflows/python-package-conda.yml` explicitly 
references `environment.yml` in the `Install dependencies` step (line 29). 
Since this file is not present in the current checkout, the workflow will fail 
as you noted. You will need to add an `environment.yml` file to the repository 
root to define the required Conda environment.
   
   **.github/workflows/python-package-conda.yml**
   ```
   - name: Install dependencies
         run: |
           conda env update --file environment.yml --name base
   ```


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to