[cleanup] scrap top-level python dir and move mlir_gen to ingress subdir #55
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| Lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install the project and its dependencies | |
| run: | | |
| uv sync | |
| - name: Run pre-commit | |
| run: |- | |
| uv run pre-commit run --all-files |