Fix changed behavior of pipe_parallel #45
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: "Pull Request CPU Tests" | |
on: | |
pull_request: | |
paths: # job only triggers when the PR changes files under megatron directory | |
- "megatron/**" | |
jobs: | |
run-tests: | |
runs-on: [ 'test', 'self-hosted' ] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Run CPU tests | |
uses: ./tests/cpu_tests | |
with: | |
target_test_ref: ${{ github.event.pull_request.base.sha }} |