use Path instead of str. add UntranslatedEntry dataclass #63
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: Python | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Python Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: astral-sh/setup-uv@v6 | |
| - name: Run ruff lint | |
| working-directory: PythonScripts | |
| run: uv run ruff check audit_translations/ | |
| - name: Run ruff format check | |
| working-directory: PythonScripts | |
| run: uv run ruff format --check audit_translations/ | |
| - name: Run tests | |
| working-directory: PythonScripts | |
| run: uv run pytest |