Fix module paths #18
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: Lint and test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: ".python-version" | |
| - name: Analysing the code with pylint | |
| run: | | |
| uv run ruff check | |
| - name: Installing MBROLA | |
| run: | | |
| sudo /bin/bash bin/install.sh | |
| - name: Testing with Pytest | |
| run: | | |
| uv run pytest --cov=src --cov-report=term-missing |