18 lines
233 B
YAML
18 lines
233 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: Run unit test
|
|
commands:
|
|
- python -m unittest lmwsip
|
|
|
|
- name: Build package files
|
|
commands:
|
|
- python3 setup.py sdist bdist_wheel
|