mirror of
https://github.com/HumanAIGC-Engineering/gradio-webrtc.git
synced 2026-02-05 01:49:23 +08:00
19 lines
392 B
YAML
19 lines
392 B
YAML
name: tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
- name: Run linters
|
|
run: |
|
|
pip install ruff pyright
|
|
pip install -e .
|
|
ruff check .
|
|
ruff format --check --diff .
|
|
pyright |