20 lines
339 B
YAML
20 lines
339 B
YAML
when:
|
|
- event: push
|
|
- branch:
|
|
exclude: [master, release/*]
|
|
|
|
steps:
|
|
- name: ruff
|
|
image: python:3.12-alpine
|
|
failure: ignore
|
|
commands:
|
|
- pip install ruff
|
|
- ruff --output-format github .
|
|
|
|
- name: mypy
|
|
image: python:3.12-alpine
|
|
failure: ignore
|
|
commands: |
|
|
pip install mypy
|
|
mypy .
|