[SOT] Add dispatch support for functools.reduce
and builtin next
& add assert_exceptions to assert sot tests with exceptions
#573
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
permissions: read-all | |
concurrency: | |
group: ${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
env: | |
PR_ID: ${{ github.event.pull_request.number }} | |
COMMIT_ID: ${{ github.event.pull_request.head.sha }} | |
jobs: | |
Clone: | |
uses: ./.github/workflows/_Clone-linux.yml | |
SOT: | |
uses: ./.github/workflows/_SOT.yml | |
needs: Clone | |
Py3: | |
uses: ./.github/workflows/_Py3.yml | |
needs: Clone |