Support extension types (like pa.FixedShapeTensorType) #218
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: Build Lint Test and Coverage | |
| on: | |
| push: | |
| branches: [ main, "v*"] | |
| pull_request: | |
| branches: [ main, "v*"] | |
| jobs: | |
| build-lint-test-coverage: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11"] | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Checkout git repo | |
| uses: actions/checkout@v3 | |
| - name: Get git tags | |
| run: git fetch --prune --unshallow --tags | |
| - name: Setup PDM | |
| uses: pdm-project/setup-pdm@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: true | |
| cache-dependency-path: ./pyproject.toml | |
| - name: Install dependencies | |
| run: pdm install -G test | |
| - name: Check file | |
| run: | | |
| file quivr/__version__.py | |
| hexdump -C quivr/__version__.py | |
| - name: Lint | |
| run: | | |
| pdm run black --check --diff --verbose quivr/__version__.py | |
| pdm run lint | |
| - name: Test | |
| run: pdm run test | |
| - name: Run benchmarks | |
| run: | | |
| pdm run benchmark --benchmark-json bench.json | |
| - name: Store main benchmark result | |
| if: github.ref == 'refs/heads/main' | |
| uses: benchmark-action/github-action-benchmark@v1 | |
| with: | |
| name: Python Benchmark | |
| tool: 'pytest' | |
| output-file-path: bench.json | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| auto-push: true | |
| alert-threshold: '150%' | |
| comment-on-alert: true | |
| fail-on-alert: true | |
| gh-pages-branch: gh-pages | |
| - name: Compare benchmarks | |
| if: github.event_name == 'pull_request' | |
| uses: benchmark-action/github-action-benchmark@v1 | |
| with: | |
| name: Python Benchmark | |
| tool: 'pytest' | |
| output-file-path: bench.json | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| comment-always: true | |
| alert-threshold: '150%' | |
| fail-threshold: '200%' | |
| gh-pages-branch: gh-pages |