We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4140351 commit c58eed6Copy full SHA for c58eed6
.github/workflows/main.yml
@@ -66,3 +66,16 @@ jobs:
66
run: python -c "import sys; print(sys.version)"
67
- name: Run Tests
68
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