feat: expand generated emoji keywords from 3 to 9 (#671) #1039
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: check_project_structure | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| structure-check: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| python-version: | |
| - "3.11" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Add project root to PYTHONPATH | |
| run: echo "PYTHONPATH=$(pwd)/src" >> $GITHUB_ENV | |
| - name: Install dependencies | |
| run: uv sync --frozen | |
| - name: Run check_project_structure.py | |
| working-directory: ./src/scribe_data/check | |
| run: uv run python check_project_structure.py | |
| - name: Post-run status | |
| if: failure() | |
| run: echo "Project structure check failed. Please fix the reported errors." |