From b965c970fc50e28f4745a59b71500a538bfd2851 Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Mon, 21 Aug 2023 11:32:37 -0500 Subject: [PATCH] more activate --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecc9ec7b..a669d11d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ env: MAMBA_NO_BANNER: 1 # ours CACHE_EPOCH: 0 - LIN_ACT: source /home/runner/micromamba/envs/ci/bin/activate && set -eux + jobs: build: @@ -39,10 +39,10 @@ jobs: ${{ env.CACHE_EPOCH }}-ubuntu-node-modules-${{ hashFiles('yarn.lock') }} - name: build - run: /home/runner/micromamba/envs/ci && doit -n4 *:build:* || doit *:build:* + run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit -n4 *:build:* || doit *:build:* - name: dist - run: $LIN_ACT && doit -n4 *:dist:* || doit *:dist:* + run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit -n4 *:dist:* || doit *:dist:* - name: upload (dist) uses: actions/upload-artifact@v3 @@ -71,7 +71,7 @@ jobs: ${{ env.CACHE_EPOCH }}-ubuntu-node-modules-${{ hashFiles('yarn.lock') }} - name: lint - run: $LIN_ACT && doit -n4 *:lint:* || doit *:lint:* + run: set -eux && source /home/runner/micromamba/envs/ci/bin/activate && doit -n4 *:lint:* || doit *:lint:* # test: # needs: [build]