14 lines
202 B
YAML
14 lines
202 B
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
on:
|
|
push:
|
|
|
|
steps:
|
|
- name: lint
|
|
image: python:3.12
|
|
commands:
|
|
- pip install --root-user-action=ignore -r requirements.txt
|
|
- ruff check .
|