Initial commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user