Skip to content

Commit eae6a1d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ac29243 + d42b3d4 commit eae6a1d

File tree

4 files changed

+167
-155
lines changed

4 files changed

+167
-155
lines changed

.github/workflows/releaseDrafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
# branches to consider in the event; optional, defaults to all
66
branches:
77
- master
8-
- 1.0
8+
- '1.0'
99

1010
jobs:
1111
update_release_draft:

.github/workflows/tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,20 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v1
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
13+
- name: Setup PHP
14+
uses: shivammathur/setup-php@v2
1115
with:
12-
fetch-depth: 1
16+
php-version: '8.0'
17+
extensions: mbstring, intl
18+
ini-values: post_max_size=256M, max_execution_time=180
19+
coverage: xdebug
20+
tools: php-cs-fixer, phpunit
1321

1422
- name: Composer dependencies
1523
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
1624

1725
- name: Run Testsuite
18-
run: vendor/bin/phpunit tests/
26+
run: vendor/bin/phpunit tests/

0 commit comments

Comments
 (0)