Skip to content

Commit

Permalink
more activate
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed Aug 21, 2023
1 parent 9071716 commit b965c97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit b965c97

Please sign in to comment.