From 03cd19d13b741115716a8b9ea6a4e2ed81a95023 Mon Sep 17 00:00:00 2001 From: Moritz-Alexander-Kern Date: Fri, 2 Feb 2024 13:29:27 +0100 Subject: [PATCH] edit shell command --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d5fec6603..45c739659 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -399,7 +399,7 @@ jobs: use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! - name: Install dependencies - shell: bash -l {0} + shell: bash -l # use login shell to activate conda env run: | sudo apt-get update sudo apt install -y libopenmpi-dev openmpi-bin @@ -413,14 +413,14 @@ jobs: sed -i -E "s/nbsphinx_execute *=.*/nbsphinx_execute = 'always'/g" doc/conf.py - name: List packages - shell: bash -l {0} + shell: bash -l run: | pip list conda list python --version - name: make html - shell: bash -l {0} + shell: bash -l run: | cd doc make html