Skip to content

Commit d04caa2

Browse files
Update smoketest.yaml
1 parent 3df883a commit d04caa2

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/smoketest.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,27 @@ jobs:
2929
stable_branch: "main"
3030
update_branch: "disabled"
3131

32-
- if: steps.branch-deploy.outputs.continue == "true"
33-
name: Setup Python
32+
- name: Setup Python
33+
if: steps.branch-deploy.outputs.continue == "true"
3434
uses: actions/setup-python@v5
3535
with:
3636
python-version: '3.11'
3737

38-
- if: steps.branch-deploy.outputs.continue == "true"
39-
name: Checkout the repo
38+
- name: Checkout the repo
39+
if: steps.branch-deploy.outputs.continue == "true"
4040
uses: actions/checkout@v6
4141
with:
4242
ref: ${{ steps.branch-deploy.outputs.sha }}
4343

44-
- if: steps.branch-deploy.outputs.continue == "true"
45-
name: Setup Python venv
44+
- name: Setup Python venv
45+
if: steps.branch-deploy.outputs.continue == "true"
4646
run: |
4747
python -m venv .venv
4848
source .venv/bin/activate
4949
python -m pip install hatch
5050
51-
- if: steps.branch-deploy.outputs.continue == "true"
52-
name: Run tests
51+
- name: Run tests
52+
if: steps.branch-deploy.outputs.continue == "true"
5353
env:
5454
AI_API_TOKEN: ${{ secrets.AI_API_TOKEN }}
5555
GITHUB_AUTH_HEADER: "Bearer ${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)