kind: pipeline type: docker name: CI Test Pipeline steps: - name: greeting image: alpine commands: - echo "Welcome to drone\n" - name: Unit Tests image: python:3.11-bullseye commands: - bash -c './scripts/run_unit_tests.sh' trigger: event: - pull_request - push # Secrets used to pull private images image_pull_secrets: - dockerconfigjson