File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -113,8 +113,14 @@ jobs:
113
113
if-no-files-found : error
114
114
retention-days : 30
115
115
- name : Comment Install instructions
116
- uses : mshick/add-pr-comment@v2
116
+ uses : actions/github-script@v7
117
117
with :
118
- message : |
119
- Build artifacts (.whl and .tar.gz) are available for download for up to 30 days.
120
- They are located at ${{ steps.artifact-upload.outputs.artifact-url }}
118
+ github-token : ${{ secrets.GITHUB_TOKEN }}
119
+ script : |
120
+ github.rest.issues.createComment({
121
+ issue_number: context.issue.number,
122
+ owner: context.repo.owner,
123
+ repo: context.repo.repo,
124
+ body: `Build artifacts (.whl and .tar.gz) are available for download for up to 30 days.
125
+ They are located at ${{ steps.artifact-upload.outputs.artifact-url }}`
126
+ })
Original file line number Diff line number Diff line change 19
19
- name : Install dependencies
20
20
run : pip install tox
21
21
- name : Run unit tests
22
- run : tox -e test-unit -- -m - -cov=guidellm --cov-report=term-missing --cov-fail-under=75
22
+ run : tox -e test-unit -- --cov=guidellm --cov-report=term-missing --cov-fail-under=75
23
23
24
24
integration-tests :
25
25
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments