fix Dorota's feedback on dependency #128
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: Package Entries Validation | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**/OWNERS' | |
| pull_request: | |
| paths: | |
| - 'components/**' | |
| - 'pipelines/**' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| - 'scripts/validate_package_entries/**' | |
| - '.github/workflows/package-entries-check.yml' | |
| - '.github/actions/setup-python-ci/**' | |
| - '!**/OWNERS' | |
| # Cancel in-progress runs when a new commit is pushed to the same PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate-package-entries: | |
| runs-on: ubuntu-24.04 | |
| name: Validate Package Entries | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Python CI | |
| uses: ./.github/actions/setup-python-ci | |
| with: | |
| python-version: 3.11 | |
| - name: Run package entries validation | |
| run: uv run python -m scripts.validate_package_entries.validate_package_entries |