Updating listings.json with postings from Simplify at 2026-03-11 00:3… #1762
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 Listings | |
| on: | |
| push: | |
| paths: | |
| - '.github/scripts/listings.json' | |
| pull_request: | |
| paths: | |
| - '.github/scripts/listings.json' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Validate listings.json | |
| run: uv run main.py listings validate |