chore(assets): update Faxbot branding images #110
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: Traits Schema Validation | |
| on: | |
| push: | |
| branches: [ auto-tunnel ] | |
| pull_request: | |
| branches: [ auto-tunnel ] | |
| jobs: | |
| validate-traits: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install jsonschema | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install jsonschema | |
| - name: Validate provider_traits.json against schema | |
| run: | | |
| python scripts/ci/validate_provider_traits.py | |