Fix merge validation for blank translated chunks #27
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Python Checks | |
| runs-on: ubuntu-latest | |
| env: | |
| PYTHONPYCACHEPREFIX: .pycache | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Verify Python sources compile | |
| run: python -m compileall scripts tests | |
| - name: Run unit tests | |
| run: python -m unittest discover -s tests -p 'test_*.py' -v |