Initial commit

This commit is contained in:
2026-07-06 06:53:19 +00:00
commit ae1f0477a2
13 changed files with 80 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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