Enable FLUX_TEST_REACTANT in AMD pipeline configuration #942
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
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| jobs: | |
| format: | |
| runs-on: ubuntu-20.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v3.0.2 | |
| id: filter | |
| with: | |
| filters: | | |
| julia_file_change: | |
| - added|modified: '**.jl' | |
| - uses: julia-actions/setup-julia@latest | |
| if: steps.filter.outputs.julia_file_change == 'true' | |
| with: | |
| version: 1.9 | |
| - name: Apply JuliaFormatter | |
| if: steps.filter.outputs.julia_file_change == 'true' | |
| run: | | |
| julia --color=yes dev/flux_format.jl --verbose . | |
| - name: Check formatting diff | |
| if: steps.filter.outputs.julia_file_change == 'true' | |
| run: | | |
| git diff --color=always --exit-code |