Skip to content

Commit

Permalink
Add extra pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Apr 19, 2023
1 parent 4140351 commit c58eed6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,16 @@ jobs:
run: python -c "import sys; print(sys.version)"
- name: Run Tests
run: python -u -m pyperformance.tests
- name: Notify Results
uses: actions/github-script@v5
if: failure() && ${{ matrix.experimental }} == true
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '${{ matrix.os }} - ${{ matrix.python }} is failure but allowed as the experimental task.'
})

0 comments on commit c58eed6

Please sign in to comment.