Skip to content

Commit 7f93da1

Browse files
Fix syntax error
1 parent db20360 commit 7f93da1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/smoketest.yaml

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

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

38-
- if steps.branch-deploy.outputs.continue == "true"
38+
- if: steps.branch-deploy.outputs.continue == "true"
3939
name: Checkout the repo
4040
uses: actions/checkout@v5
4141

42-
- if steps.branch-deploy.outputs.continue == "true"
42+
- if: steps.branch-deploy.outputs.continue == "true"
4343
name: Checkout the PR
4444
env:
4545
PR_NUMBER: ${{ github.event.issue.number }}
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
run: |
4848
gh pr checkout $PR_NUMBER
4949
50-
- if steps.branch-deploy.outputs.continue == "true"
50+
- if: steps.branch-deploy.outputs.continue == "true"
5151
name: Setup Python venv
5252
run: |
5353
python -m venv .venv
5454
source .venv/bin/activate
5555
python -m pip install hatch
5656
57-
- if steps.branch-deploy.outputs.continue == "true"
57+
- if: steps.branch-deploy.outputs.continue == "true"
5858
name: Run tests
5959
env:
6060
AI_API_TOKEN: ${{ secrets.AI_API_TOKEN }}

0 commit comments

Comments
 (0)