Support versioning for custom ops in QONNX #585
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 pre-commit | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [ main, dev ] | |
| push: | |
| branches: [ main, dev ] | |
| jobs: | |
| lint: | |
| name: Lint PR or Push to DEV | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run Lint | |
| uses: pre-commit-ci/lite-action@v1.1.0 | |
| if: always() |