feat(kda): enable FlashKDA on SM100 (#124) #143
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: Lint | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: lint-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| clang-format: | |
| name: clang-format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: j178/prek-action@v2 | |
| with: | |
| install-only: true | |
| - name: Check clang-format | |
| run: prek run clang-format --all-files --show-diff-on-failure --color=always | |
| ruff: | |
| name: Ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: j178/prek-action@v2 | |
| with: | |
| install-only: true | |
| - name: Check Ruff lint | |
| run: prek run ruff --all-files --show-diff-on-failure --color=always | |
| - name: Check Ruff format | |
| run: prek run ruff-format --all-files --show-diff-on-failure --color=always |