-
Notifications
You must be signed in to change notification settings - Fork 0
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 #12 from php-etl/feature/qualityflow-improvments
Feature/qualityflow improvments
- Loading branch information
Showing
21 changed files
with
2,322 additions
and
737 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Mutations | ||
on: push | ||
jobs: | ||
infection: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
tools: composer:v2 | ||
coverage: pcov | ||
- 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: Infection | ||
run: | | ||
wget -q https://github.com/infection/infection/releases/download/0.26.18/infection.phar | ||
wget -q https://github.com/infection/infection/releases/download/0.26.18/infection.phar.asc | ||
chmod +x infection.phar | ||
./infection.phar | ||
- name: Store infection log | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: infection.log |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: PHPStan level 7 | ||
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: 7 |
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 8 | ||
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: 8 |
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,30 @@ | ||
name: PHPUnit | ||
on: push | ||
jobs: | ||
phpunit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
tools: composer:v2 | ||
coverage: pcov | ||
- 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: Run tests & generate Coverage | ||
run: bin/phpunit --coverage-html var/coverage | ||
|
||
- name: Store coverage files | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: var/coverage |
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,37 @@ | ||
name: Quality (PHPStan lvl 5) | ||
on: push | ||
jobs: | ||
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 --dry-run --config=.php-cs-fixer.dist.php | ||
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/ | ||
args: --level=5 | ||
|
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,32 @@ | ||
# 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/string-expression-language' | ||
steps: | ||
- | ||
if: github.event.pull_request.head.repo.full_name == github.repository | ||
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
/vendor/ | ||
bin/ | ||
.php-cs-fixer.cache | ||
.phpunit.result.cache |
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
Oops, something went wrong.