2024-03-20 13:36:01 +01:00
|
|
|
apiVersion: tekton.dev/v1beta1
|
|
|
|
kind: Task
|
|
|
|
metadata:
|
|
|
|
name: phpstan
|
|
|
|
spec:
|
2024-04-02 09:49:28 +02:00
|
|
|
description: Phpstan on modified code
|
2024-03-20 13:36:01 +01:00
|
|
|
workspaces:
|
|
|
|
- name: source
|
|
|
|
params:
|
|
|
|
- name: apiurl
|
|
|
|
- name: requestid
|
|
|
|
steps:
|
2024-04-02 09:49:28 +02:00
|
|
|
- name: analyse
|
2024-04-08 14:27:16 +02:00
|
|
|
image: reg.cadoles.com/cadoles/phpstan
|
2024-04-02 09:49:28 +02:00
|
|
|
script: |
|
|
|
|
#!/bin/sh
|
|
|
|
echo "== RUN PHPSTAN ==========================================="
|
|
|
|
cd $(workspaces.source.path)
|
|
|
|
phpstan analyse -l 5 --configuration phpstan-pipeline.neon --error-format table --no-progress > temp_phpstan.txt 2>&1
|
|
|
|
cat temp_phpstan.txt
|