Add GitHub Actions workflow for Python package with Conda - #4589
Add GitHub Actions workflow for Python package with Conda#4589saifkhna0123456789-maker wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 82ef4e429f
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| echo $CONDA/bin >> $GITHUB_PATH | ||
| - name: Install dependencies | ||
| run: | | ||
| conda env update --file environment.yml --name base |
There was a problem hiding this comment.
Add the referenced Conda environment file
Every push reaches conda env update --file environment.yml --name base, but a repository-wide tree search at this commit finds no environment.yml or environment.yaml. Consequently, this step exits because its input file is missing, so the new workflow can never reach linting or tests; either add the manifest or install from the repository's existing pyproject.toml/uv.lock dependency source.
Useful? React with 👍 / 👎.
|
|
Thanks for suggesting this. However, we don't need to add conda patterns to the CI builds so far. |
.github/workflows/python-package-conda.yml