Enable SAI_SERDES_RX_REACH for TH6 #1379
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: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.9" # pre-commit-hooks requires Python 3.9+ | |
| - name: Show changed files | |
| run: git diff --name-only HEAD^... | |
| - uses: pre-commit/[email protected] | |
| with: | |
| # replace the default extra_args = "--all-files" since we only care about the changed files for now | |
| extra_args: "--from-ref HEAD^ --to-ref HEAD" |