Skip to content

Commit dde9214

Browse files
committed
Merge branch 'jobs' into development
2 parents 4d74a57 + 0986e12 commit dde9214

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
mariadb:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
timeout-minutes: 10
1313

1414
strategy:
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: PHPStan
5858
run:
59-
vendor/bin/phpstan analyse --xdebug -vvv
59+
vendor/bin/phpstan analyse -vvv
6060

6161
- name: PHPUnit
6262
env:
@@ -73,7 +73,7 @@ jobs:
7373
php-coveralls --coverage_clover=build/logs/clover.xml -v
7474
7575
mariadb-last:
76-
runs-on: ubuntu-20.04
76+
runs-on: ubuntu-22.04
7777
timeout-minutes: 10
7878

7979
strategy:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ test:php:
2727
- composer normalize --dry-run --indent-size=4 --indent-style=space
2828
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
2929
- vendor/bin/phpmd src xml phpmd.xml
30-
- vendor/bin/phpstan analyse --xdebug -vvv
30+
- vendor/bin/phpstan analyse -vvv
3131
- vendor/bin/phpunit --colors=never
3232
- phpdoc
3333
artifacts:

ci-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ commands=(
66
"composer normalize --dry-run --indent-size=4 --indent-style=space"
77
"vendor/bin/php-cs-fixer fix --diff --dry-run --verbose"
88
"vendor/bin/phpmd src xml phpmd.xml"
9-
"vendor/bin/phpstan analyse --xdebug -vvv"
9+
"vendor/bin/phpstan analyse -vvv"
1010
"vendor/bin/phpunit"
1111
"phpdoc"
1212
)

0 commit comments

Comments
 (0)