File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments