Skip to content

Commit

Permalink
merge 3.x => 4.x (#315)
Browse files Browse the repository at this point in the history
* allow manually dispatching ci workflow (#314)

* allow manually dispatching ci workflow

* adjust cs-stan to run on ubuntu-20.04

* update phpunit.xml.dist
  • Loading branch information
LordSimal authored Sep 5, 2023
1 parent c2ee84d commit ed9f252
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
branches:
- '*'
workflow_dispatch:

jobs:
testsuite:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy_docs_3x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- 3.x
workflow_dispatch:

jobs:
deploy:
Expand Down
20 changes: 10 additions & 10 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
backupStaticProperties="false"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
stopOnSkipped="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
cacheDirectory=".phpunit.cache">

<extensions>
<extension class="Cake\TestSuite\Fixture\PHPUnitExtension" />
<bootstrap class="Cake\TestSuite\Fixture\Extension\PHPUnitExtension"/>
</extensions>

<testsuites>
Expand All @@ -22,9 +22,9 @@
</testsuite>
</testsuites>

<filter>
<whitelist>
<source>
<include>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</include>
</source>
</phpunit>

0 comments on commit ed9f252

Please sign in to comment.