mirror of https://github.com/coqui-ai/TTS.git
24 lines
513 B
YAML
24 lines
513 B
YAML
name: style-check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.9]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup uv
|
|
uses: ./.github/actions/setup-uv
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
run: uv python install ${{ matrix.python-version }}
|
|
- name: Lint check
|
|
run: make lint
|