Add docs on working with Pandera for data validation #4716
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 on Kedro Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - "docs/**" | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - "docs/**" | |
| - '**.md' | |
| jobs: | |
| lint: | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.10", "3.11", "3.12", "3.13" ] | |
| uses: ./.github/workflows/lint.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} |