Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • itpublic/drupal/modules/uib-api-connector
1 result
Show changes
Commits on Source (2)
stages:
- test
- 🪄 Test
'📦️ Composer test build':
stage: 🪄 Test
image: registry.gitlab.com/pipeline-components/php-codesniffer:latest
variables:
PHPVERSION: "8.3"
script:
- composer validate
- composer install
'🧹 PHP linting':
stage: 🪄 Test
image: registry.gitlab.com/pipeline-components/php-codesniffer:latest
script:
- |
find . -name "*.php" -or -name "*.module" -o -name "*.inc"|while read -r filename; do
php -l "$filename"
done
# Regarding severity=0 https://git.app.uib.no/it/site/w4.uib.no/-/issues/590
php-compatibility-83:
stage: test
'🧹 PHP 8.3 Compatibility (PHPCS)':
stage: 🪄 Test
image: registry.gitlab.com/pipeline-components/php-codesniffer:latest
variables:
PHPVERSION: "8.3"
......@@ -15,8 +33,8 @@ php-compatibility-83:
--extensions=php
--runtime-set testVersion ${PHPVERSION} .
drupal-code-standard:
stage: test
'🧹 Drupal PHP Coding standards (PHPCS)':
stage: 🪄 Test
image: registry.gitlab.com/pipeline-components/php-codesniffer:latest
script:
- cd /app
......
name: 'UiB api connector'
name: 'UiB API connector'
type: module
description: 'Takes care of connecting to external api's'
description: 'Connecting to external API.'
package: UiB
core_version_requirement: ^10
core_version_requirement: ">=10"