Skip to content

Commit c58eed6

Browse files
committed
Add extra pipeline
1 parent 4140351 commit c58eed6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,16 @@ jobs:
6666
run: python -c "import sys; print(sys.version)"
6767
- name: Run Tests
6868
run: python -u -m pyperformance.tests
69+
- name: Notify Results
70+
uses: actions/github-script@v5
71+
if: failure() && ${{ matrix.experimental }} == true
72+
with:
73+
github-token: ${{secrets.GITHUB_TOKEN}}
74+
script: |
75+
github.rest.issues.createComment({
76+
issue_number: context.issue.number,
77+
owner: context.repo.owner,
78+
repo: context.repo.repo,
79+
body: '${{ matrix.os }} - ${{ matrix.python }} is failure but allowed as the experimental task.'
80+
})
81+

0 commit comments

Comments
 (0)