2022-10-16 03:33:23 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: test
|
|
|
|
|
2022-10-16 18:18:33 +02:00
|
|
|
platform:
|
|
|
|
os: linux
|
2023-04-01 01:03:03 +02:00
|
|
|
#arch: arm64
|
2022-10-16 18:18:33 +02:00
|
|
|
|
2022-10-16 03:33:23 +02:00
|
|
|
steps:
|
|
|
|
- name: greeting
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- echo hello
|
2022-10-16 18:23:35 +02:00
|
|
|
- echo world
|
|
|
|
|
|
|
|
- name: Pylint
|
2022-10-16 20:09:59 +02:00
|
|
|
image: python
|
2022-10-16 18:23:35 +02:00
|
|
|
commands:
|
|
|
|
- pip install poetry
|
|
|
|
- poetry install
|
|
|
|
- poetry run pylint heimdallr
|