[DO NOT MERGE] feat: remove generated protobuf code from substrait-python #238
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: Run linter and formatter | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| tags: [ 'v*.*.*' ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Lint and Format | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - uses: prefix-dev/setup-pixi@v0.9.3 | |
| with: | |
| pixi-version: v0.62.2 | |
| - name: Run ruff linter | |
| run: | | |
| pixi run lint | |
| - name: Run ruff formatter | |
| run: | | |
| pixi run format --check |