mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-12 01:39:52 +02:00
17 lines
397 B
Groovy
17 lines
397 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('phpstan') {
|
|
steps {
|
|
sh """
|
|
docker run --pull=always \
|
|
-v ${env.WORKSPACE}:/src/tt-rss/plugins/plugin \
|
|
--workdir /src/tt-rss \
|
|
--rm cthulhoo/ttrss-fpm-pgsql-static:latest \
|
|
php81 ./vendor/bin/phpstan analyse plugins/plugin
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
}
|