Files
gradio-webrtc/.github/workflows/tests.yml
Marcus Valtonen Örnhag 948a479601 Introduce automatic linting with Github workflows (#251)
* Add linters

* use other setup-python version

* Use string instead

* Add more linting

* Fix tests

* minor changes

---------

Co-authored-by: Marcus Valtonen Örnhag <marcus.valtonen.ornhag@ericsson.com>
2025-04-04 12:36:35 -04:00

17 lines
339 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
ruff check .
ruff format --check --diff .