feat: Add example rows to ValidationError for all rule failures
#1060
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| # Automatically stop old builds on the same branch/PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| # needed for 'pre-commit-mirrors-insert-license' | |
| fetch-depth: 0 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@1b2de7f3351f171c8b4dfeb558c639cb58ed4ec0 # v0.9.5 | |
| with: | |
| environments: default lint polars-minimal | |
| - name: Install Rust | |
| run: rustup show | |
| - name: Cache Rust dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| - name: Run linting | |
| run: pixi run lint | |
| env: | |
| CLICOLOR_FORCE: 1 | |
| unit-tests: | |
| name: Unit Tests (${{ contains(matrix.os, 'ubuntu') && 'Linux' || (contains(matrix.os, 'windows') && 'Windows' || 'macOS') }}) - ${{ matrix.environment }} | |
| timeout-minutes: 30 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| environment: [py310, py311, py312, py313, py314] | |
| with_optionals: [false] | |
| include: | |
| # Test with optional dependencies across OSes | |
| - os: ubuntu-latest | |
| environment: py314-optionals | |
| with_optionals: true | |
| - os: windows-latest | |
| environment: py314-optionals | |
| with_optionals: true | |
| - os: macos-latest | |
| environment: py314-optionals | |
| with_optionals: true | |
| # Test polars backward compatibility, only one OS | |
| - os: ubuntu-latest | |
| environment: polars-minimal | |
| with_optionals: false | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@1b2de7f3351f171c8b4dfeb558c639cb58ed4ec0 # v0.9.5 | |
| with: | |
| environments: ${{ matrix.environment }} | |
| # FIXME: Remove when `s3_server` fixture does not start a process anymore | |
| post-cleanup: ${{ matrix.os != 'windows-latest' }} | |
| - name: Install Rust | |
| run: rustup show | |
| - name: Cache Rust dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| - name: Install repository | |
| run: pixi run -e ${{ matrix.environment }} postinstall | |
| - name: Run pytest | |
| run: pixi run -e ${{ matrix.environment }} test-coverage --color=yes ${{ matrix.with_optionals && '-m with_optionals' || '-m "not with_optionals"'}} --cov=dataframely --cov-report=xml | |
| - name: Upload codecov | |
| uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 | |
| with: | |
| files: ./coverage.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |