Skip to content

Commit

Permalink
update workflow to use conda instead of micromamba
Browse files Browse the repository at this point in the history
  • Loading branch information
mccroweyclinton-EPA committed Oct 18, 2024
1 parent da66140 commit 8ca6264
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/github-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,16 @@ jobs:
cache: "pip"
- name: install_dependencies
run: |
conda install --yes -c conda-forge micromamba
micromamba install -c conda-forge --yes --file=environment.yaml
conda update -n base conda
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
conda install -c conda-forge --yes --file=environment.yaml
- name: Display Python version and system info
run: python -c "import platform; print(platform.uname())"
- name: Display Python version and system info
run: |
python -m build .
python -m pip install .
pip install .
# the dependencies required for sphinxcontrib.spelling
# do not seem to be maintained anymore
# - name: fail the build in case of any misspelled words
Expand Down

0 comments on commit 8ca6264

Please sign in to comment.