Skip to content

Commit

Permalink
Merge branch 'develop' into ci/github-workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Aug 1, 2024
2 parents 46b1cea + 9f53082 commit 556986a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependency-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, sockets
ini-values: error_reporting=E_ALL
coverage: none
tools: phive
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, sockets
ini-values: error_reporting=E_ALL
coverage: none
tools: phive
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, opcache, pcntl, posix
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, curl, fileinfo, pdo_mysql, opcache, pcntl, posix, sockets
ini-values: error_reporting=E_ALL
coverage: none

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, curl, fileinfo, opcache, pcntl, posix
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, curl, fileinfo, opcache, pcntl, posix, sockets
ini-values: error_reporting=E_ALL
coverage: xdebug

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, pdo_sqlite, curl, fileinfo, opcache, pcntl, posix
extensions: none, ctype, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter, pdo, pdo_mysql, pdo_sqlite, curl, fileinfo, opcache, pcntl, posix, sockets
ini-values: error_reporting=E_ALL
coverage: xdebug

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: 🔑 Generate secret application key
working-directory: app
run: php artisan key:generate
run: php app.php encrypt:key -m .env

- name: 🧪 Collect code coverage with Xdebug and pestphp/pest
working-directory: app
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- name: 🔑 Generate secret application key
working-directory: app
run: php artisan key:generate
run: php app.php encrypt:key -m .env

- name: 🧪 Run architecture tests using pestphp/pest
working-directory: app
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
- name: 🔑 Generate secret application key
working-directory: app
run: php artisan key:generate
run: php app.php encrypt:key -m .env

- name: 🧪 Run mutation testing using Xdebug and infection/infection
working-directory: app
Expand Down
4 changes: 3 additions & 1 deletion app/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
return Config\RectorConfig::configure()
->withCache(__DIR__ . '/.build/rector/')
->withPaths([
__DIR__ . '/app/src/',
__DIR__ . '/config/',
__DIR__ . '/migrations/',
__DIR__ . '/src/',
__DIR__ . '/tests/',
__DIR__ . '/.php-cs-fixer.dist.php',
__DIR__ . '/rector.php',
Expand Down

0 comments on commit 556986a

Please sign in to comment.