mirror of https://github.com/coqui-ai/TTS.git
30 lines
733 B
YAML
30 lines
733 B
YAML
name: style-check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.9]
|
|
experimental: [false]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
cache: 'pip'
|
|
cache-dependency-path: 'requirements*'
|
|
- name: Install/upgrade dev dependencies
|
|
run: python3 -m pip install -r requirements.dev.txt
|
|
- name: Lint check
|
|
run: make lint
|