Вкладки RVC и TTS+RVC объединены в один файл #380
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: Code Linter | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref_name }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| pip install flake8 pylint vulture | |
| pip install -r requirements.txt | |
| - name: Run flake8 | |
| run: flake8 . | |
| continue-on-error: true | |
| - name: Run PyLint | |
| run: pylint . | |
| continue-on-error: true | |
| - name: Run Vulture | |
| run: vulture . | |
| continue-on-error: true |