You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
422 B
YAML

1 year ago
kind: pipeline
type: docker
name: CI Test/Lint Pipeline
1 year ago
steps:
- name: Unit Tests
image: python:3.11-bullseye
commands:
- bash -c './scripts/run_unit_tests.sh'
- name: Lint Check
parallel: true
image: python:3.11-bullseye
commands:
- bash -c './scripts/run_lint_checks.sh'
1 year ago
trigger:
event:
- pull_request
- push
# Secrets used to pull private images
image_pull_secrets:
- dockerconfigjson