File tree Expand file tree Collapse file tree 4 files changed +167
-155
lines changed Expand file tree Collapse file tree 4 files changed +167
-155
lines changed Original file line number Diff line number Diff line change 5
5
# branches to consider in the event; optional, defaults to all
6
6
branches :
7
7
- master
8
- - 1.0
8
+ - ' 1.0'
9
9
10
10
jobs :
11
11
update_release_draft :
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
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
11
15
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
13
21
14
22
- name : Composer dependencies
15
23
run : composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
16
24
17
25
- name : Run Testsuite
18
- run : vendor/bin/phpunit tests/
26
+ run : vendor/bin/phpunit tests/
You can’t perform that action at this time.
0 commit comments