Skip to content

Commit 593f74c

Browse files
committed
Merge branch 'jobs' into development
2 parents c40ca2b + e0d0f8d commit 593f74c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.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
tests:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
timeout-minutes: 10
1313

1414
strategy:
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: PHPStan
4747
run:
48-
vendor/bin/phpstan analyse --xdebug -vvv
48+
vendor/bin/phpstan analyse -vvv
4949

5050
- name: PHPUnit
5151
run: vendor/bin/phpunit --verbose
@@ -60,7 +60,7 @@ jobs:
6060
php-coveralls --coverage_clover=build/logs/clover.xml -v
6161
6262
tests-last:
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-22.04
6464
timeout-minutes: 10
6565

6666
strategy:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test:php:
2121
- composer normalize --dry-run --indent-size=4 --indent-style=space
2222
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
2323
- vendor/bin/phpmd src xml phpmd.xml
24-
- vendor/bin/phpstan analyse --xdebug -vvv
24+
- vendor/bin/phpstan analyse -vvv
2525
- vendor/bin/phpunit --colors=never
2626
- phpdoc
2727
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)