33 lines
405 B
Plaintext
33 lines
405 B
Plaintext
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: python:3.12
|
|
|
|
commands:
|
|
- pip install -r requirements.txt
|
|
|
|
- name: lint
|
|
image: python:3.12
|
|
|
|
commands:
|
|
- pip install flake8
|
|
-flake8 .
|
|
|
|
- name: test
|
|
image:python:3.12
|
|
|
|
commands:
|
|
- pip install pytest
|
|
- pytest
|
|
|
|
trigger:
|
|
branch:
|
|
-main
|
|
|
|
event:
|
|
- push
|
|
- pull_request
|