-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from php-etl/feature/github-actions
Added GitHub actions + updated dependencies
- Loading branch information
Showing
16 changed files
with
454 additions
and
4,389 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: PHPStan level 6 | ||
on: push | ||
jobs: | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v6 | ||
with: | ||
args: --prefer-dist | ||
php_version: '8.2' | ||
|
||
- name: PHPStan | ||
uses: php-actions/phpstan@v3 | ||
with: | ||
path: src/ | ||
level: 6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,36 @@ | ||
name: Quality (PHPStan level 4) | ||
name: Quality (PHPStan lvl 4) | ||
on: push | ||
jobs: | ||
cs-fixer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Cs-Fixer | ||
run: | | ||
wget -q https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer | ||
chmod a+x php-cs-fixer | ||
PHP_CS_FIXER_IGNORE_ENV=true ./php-cs-fixer fix src --dry-run | ||
cs-fixer: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
- name: Cs-Fixer | ||
run: | | ||
wget -q https://cs.symfony.com/download/php-cs-fixer-v3.phar -O php-cs-fixer | ||
chmod a+x php-cs-fixer | ||
PHP_CS_FIXER_IGNORE_ENV=true ./php-cs-fixer fix src --dry-run | ||
phpunit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.0' | ||
tools: composer:v2 | ||
coverage: pcov | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: Run tests & generate Coverage | ||
run: bin/phpunit --configuration=phpunit.xml tests --coverage-html var/coverage --whitelist=src | ||
- name: Store coverage files | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: var/coverage | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v6 | ||
with: | ||
args: --prefer-dist | ||
php_version: '8.2' | ||
|
||
phpstan: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: '**/vendor' | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- uses: php-actions/composer@v5 | ||
with: | ||
args: --prefer-dist | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v2 | ||
with: | ||
path: src/ | ||
level: 4 | ||
php_version: 8.0 | ||
- name: PHPStan | ||
uses: php-actions/phpstan@v3 | ||
with: | ||
path: src/ | ||
level: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# github action that checks code with Rector | ||
name: Rector | ||
|
||
on: | ||
pull_request: null | ||
|
||
jobs: | ||
rector: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.head.repo.full_name == 'php-etl/rabbitmq-flow' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
coverage: none | ||
|
||
- uses: "ramsey/composer-install@v2" | ||
|
||
- run: bin/rector --ansi | ||
|
||
- # commit only to core contributors who have repository access | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: '[rector] Rector fixes' | ||
commit_author: 'GitHub Action <[email protected]>' | ||
commit_user_email: '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
$finder = (new PhpCsFixer\Finder()) | ||
->in('src') | ||
; | ||
|
||
return (new PhpCsFixer\Config()) | ||
->setRiskyAllowed(true) | ||
->setRules([ | ||
'@PHP82Migration' => true, | ||
'@PHP81Migration' => true, | ||
'@PHP80Migration:risky' => true, | ||
'@PHPUnit84Migration:risky' => true, | ||
'@PSR1' => true, | ||
'@PSR12' => true, | ||
'@PhpCsFixer' => true, | ||
'@Symfony' => true, | ||
'ternary_to_elvis_operator' => true, | ||
'set_type_to_cast' => true, | ||
'self_accessor' => true, | ||
'psr_autoloading' => true, | ||
'php_unit_test_annotation' => ['style' => 'annotation'], | ||
'php_unit_set_up_tear_down_visibility' => true, | ||
'php_unit_construct' => true, | ||
'no_useless_sprintf' => true, | ||
'no_homoglyph_names' => true, | ||
'native_function_invocation' => true, | ||
'native_constant_invocation' => true, | ||
'modernize_types_casting' => true, | ||
'logical_operators' => true, | ||
'is_null' => true, | ||
'function_to_constant' => true, | ||
'fopen_flag_order' => true, | ||
'error_suppression' => true, | ||
'ereg_to_preg' => true, | ||
'dir_constant' => true, | ||
'method_chaining_indentation' => false, | ||
]) | ||
->setFinder($finder) | ||
->setCacheFile('.php-cs-fixer.cache') // forward compatibility with 3.x line | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.