fix(keyword): allow wildcard in allowed list #270
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: validate STAC items | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| paths: | |
| - "models/**" | |
| - "fair/schemas/**" | |
| - "fair/stac/validators.py" | |
| - "fair/zenml/model_validator.py" | |
| pull_request: | |
| branches: | |
| - develop | |
| paths: | |
| - "models/**" | |
| - "fair/schemas/**" | |
| - "fair/stac/validators.py" | |
| - "fair/zenml/model_validator.py" | |
| defaults: | |
| run: | |
| shell: bash | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| name: validate stac items & models | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@v4 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v8.0.0 | |
| with: | |
| python-version: "3.13" | |
| enable-cache: true | |
| - name: Install just | |
| uses: extractions/setup-just@v2 | |
| - name: Install dependencies | |
| run: uv sync --group dev | |
| - name: Validate STAC items | |
| run: just validate |