Skip to content

Commit

Permalink
Forgot to add conda to the system path
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-oscarsson committed Aug 31, 2023
1 parent c58886a commit b8bc33a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/format_and_lint_ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ jobs:
activate: true
pythonVersion: ${{ matrix.python-version }}

- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Set up Conda and install dependencies
run: |
conda install -c conda-forge mamba
mamba env update --file conda-environment.yml --name base
- name: Install dependencies
run: |
pip install -e .
Expand Down Expand Up @@ -61,6 +71,11 @@ jobs:
- name: Install LDAP dependencies
run: sudo apt-get -y install libsasl2-dev libldap2-dev libssl-dev

- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Set up Conda and install dependencies
run: |
conda install -c conda-forge mamba
Expand Down

0 comments on commit b8bc33a

Please sign in to comment.