kind: pipeline name: default platform: os: linux arch: arm64 steps: - name: fetch image: alpine/git failure: ignore commands: - git fetch --tags - name: build image: python commands: - pip3 install -r requirements.txt - python3 setup.py bdist - name: test image: python commands: - pip3 install -r requirements.txt - pip3 install pytest flake8 - pytest vedirect - flake8 vedirect