ft-orchestration fix sim_threshold result and add test id in html rep… #26
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: Ruff | |
| on: [push, pull_request] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: tj-actions/changed-files@v45 | |
| name: Get changed files | |
| id: changed-files | |
| with: | |
| files: | | |
| **.py | |
| - if: ${{ steps.changed-files.outputs.any_changed == 'true' }} | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| version: "0.9.3" | |
| args: "check --fix" | |
| src: ${{ steps.changed-files.outputs.all_changed_files }} | |
| - if: ${{ steps.changed-files.outputs.any_changed == 'true' }} | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| version: "0.9.3" | |
| args: "format --check" | |
| src: ${{ steps.changed-files.outputs.all_changed_files }} |