2024-02-10 20:43:40 -08:00
|
|
|
when:
|
|
|
|
branch: main
|
|
|
|
steps:
|
|
|
|
- name: lint
|
2024-04-20 15:00:40 -07:00
|
|
|
image: python:3-slim
|
2024-02-10 20:43:40 -08:00
|
|
|
commands:
|
|
|
|
- python -m pip install --upgrade pip
|
|
|
|
- python -m pip install -r requirements.txt
|
|
|
|
- python -m pip install ruff
|
|
|
|
- ruff check .
|