mirror of
https://github.com/CMiksche/gitea-auto-update
synced 2025-12-10 16:07:23 +01:00
12 lines
251 B
YAML
12 lines
251 B
YAML
kind: pipeline
|
|
name: default
|
|
steps:
|
|
- name: test
|
|
image: python
|
|
commands:
|
|
- pip install pipenv
|
|
- pipenv install
|
|
- pipenv run gitlint
|
|
- pipenv run pylint setup.py gitea_auto_update
|
|
- pipenv run python -m unittest
|