only build prs and main

This commit is contained in:
weeman 2021-06-21 21:51:45 +02:00
parent 9e48953fc3
commit a349eff9b0
Signed by untrusted user: weeman
GPG Key ID: 34F0524D4DA694A1
2 changed files with 16 additions and 15 deletions

View File

@ -4,7 +4,7 @@ type: docker
name: default
steps:
- name: qa
- name: qa_main
image: python:3.8-alpine
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
@ -12,3 +12,18 @@ steps:
- pipenv install --dev
- pipenv run flake8
- pipenv run python -m unittest discover ki
when:
branch:
- main
- name: qa_pr
image: python:3.8-alpine
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
- pip3 install pipenv
- pipenv install --dev
- pipenv run flake8
- pipenv run python -m unittest discover ki
when:
event:
- pull_request

View File

@ -1,14 +0,0 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: qa
image: python3.8-alpine
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
- pip3 install pipenv
- pipenv install --system
- flake8
- python -m unittest discover ki