Skip to content

Commit 40cb201

Browse files
committed
chore(1.0): Update drafter & tests
1 parent 287d7bc commit 40cb201

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
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: '7.4'
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)