File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -14,20 +14,21 @@ jobs:
1414 - name : Clone paddle
1515 uses : actions/checkout@v4
1616
17- - name : Cache python dependencies
18- uses : actions/cache@v4
17+ - uses : actions/setup-python@v5
1918 with :
20- path : ~/.cache/pip
21- key : checkpr_pip
19+ python-version : ' 3.13'
20+ cache : ' pip'
21+
22+ - name : Install dependencies
23+ run : |
24+ pip install -r httpx
2225
2326 - name : Check PR Template
2427 env :
2528 AGILE_PULL_ID : ${{ github.event.pull_request.number }}
2629 GITHUB_API_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2730 run : |
28- git checkout -b test
29- pip install httpx pymysql PyGithub
30- python tools/CheckPRTemplate.py;EXCODE=$?
31+ python tools/CheckPRTemplate.py; EXCODE=$?
3132 echo "EXCODE: $EXCODE"
3233 echo "ipipe_log_param_EXCODE: $EXCODE"
3334 set +x
You can’t perform that action at this time.
0 commit comments