Add docs on working with Great Expectations for data validation #6162
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 all checks on Kedro | |
| on: | |
| workflow_call: | |
| inputs: | |
| branch: | |
| type: string | |
| default: '' | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths-ignore: | |
| - "docs/**" | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| paths-ignore: | |
| - "docs/**" | |
| - '**.md' | |
| permissions: | |
| contents: read | |
| jobs: | |
| unit-tests: | |
| strategy: | |
| matrix: | |
| os: [ windows-latest, ubuntu-latest ] | |
| python-version: [ "3.10", "3.11", "3.12", "3.13" ] | |
| uses: ./.github/workflows/unit-tests.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| branch: ${{ inputs.branch }} | |
| e2e-tests: | |
| strategy: | |
| matrix: | |
| os: [ windows-latest, ubuntu-latest ] | |
| python-version: [ "3.10", "3.11", "3.12", "3.13" ] | |
| uses: ./.github/workflows/e2e-tests.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| branch: ${{ inputs.branch }} | |
| lint: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.11" ] | |
| uses: ./.github/workflows/lint.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| branch: ${{ inputs.branch }} | |
| pip-compile: | |
| strategy: | |
| matrix: | |
| os: [ windows-latest, ubuntu-latest ] | |
| python-version: [ "3.10", "3.11", "3.12", "3.13" ] | |
| uses: ./.github/workflows/pip-compile.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| branch: ${{ inputs.branch }} | |
| detect-secrets: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.11" ] | |
| uses: ./.github/workflows/detect-secrets.yml | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| branch: ${{ inputs.branch }} |