minipack3ba: platform: Support second source of SMB and 3V3 (#782) #1467
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/action@v3.0.1 | |
| 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" |