From 83c372ec2b4a4488ac3d47bd0b824c40229e56f2 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 18 Feb 2021 08:47:00 -0700 Subject: [PATCH] bug: gha runners are configured strangely (#500) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad7c2b51..6f768014 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: conda env create -q -p ./test-env --file $envFile - name: install conda dependencies + shell: bash -l {0} run: | source "$CONDA/etc/profile.d/conda.sh" conda install -p ./test-env -q pip @@ -46,6 +47,7 @@ jobs: - name: install pip dependencies shell: bash -l {0} run: | + source "$CONDA/etc/profile.d/conda.sh" conda activate ./test-env pip install -r requirements.txt @@ -54,5 +56,6 @@ jobs: env: SPHINXOPTS: -q run: | + source "$CONDA/etc/profile.d/conda.sh" conda activate ./test-env make clean && make dummy && make preview