Add UCCL backend integration for NIXL #2437
Workflow file for this run
This file contains hidden or 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: Python Checks | |
| on: [pull_request] | |
| jobs: | |
| python-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - ./src | |
| - ./test | |
| - ./benchmark | |
| - ./examples/python | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Check for print() calls in ${{ matrix.path }} | |
| run: | | |
| ./.ci/scripts/check_prints.sh ${{ matrix.path }} |