chore: refresh dsh-plugin catalog #131
Workflow file for this run
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: Directory quality | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Validate structured catalog | |
| run: python3 scripts/sync_topic_plugins.py check | |
| - name: Validate bilingual directory | |
| run: python3 scripts/validate_directory.py | |
| - name: Test topic sync rules | |
| run: python3 -m unittest discover -s tests -p "test_*.py" |