-
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.
Configure continuous integration with GitHub actions
- Loading branch information
Showing
3 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
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,54 @@ | ||
name: 'Quality' | ||
|
||
on: | ||
push: | ||
branches: ['*'] | ||
|
||
jobs: | ||
phpcs: | ||
name: 'PHP CodeSniffer' | ||
runs-on: 'ubuntu-latest' | ||
|
||
strategy: | ||
matrix: | ||
php-version: ['8.1'] | ||
|
||
steps: | ||
- name: 'Setup PHP' | ||
uses: 'shivammathur/setup-php@v2' | ||
with: | ||
php-version: '${{ matrix.php-version }}' | ||
coverage: 'none' | ||
|
||
- name: 'Checkout sources' | ||
uses: 'actions/checkout@v3' | ||
|
||
- name: 'Install dependencies' | ||
run: 'composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist' | ||
|
||
- name: 'Execute PHP CodeSniffer' | ||
run: 'vendor/bin/phpcs -p' | ||
|
||
phpstan: | ||
name: 'PHPStan' | ||
runs-on: 'ubuntu-latest' | ||
|
||
strategy: | ||
matrix: | ||
php-version: ['8.1'] | ||
|
||
steps: | ||
- name: 'Setup PHP' | ||
uses: 'shivammathur/setup-php@v2' | ||
with: | ||
php-version: '${{ matrix.php-version }}' | ||
coverage: 'none' | ||
|
||
- name: 'Checkout sources' | ||
uses: 'actions/checkout@v3' | ||
|
||
- name: 'Install dependencies' | ||
run: 'composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist' | ||
|
||
- name: 'Execute PHPStan' | ||
run: 'vendor/bin/phpstan' |
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,62 @@ | ||
name: 'Tests' | ||
|
||
on: | ||
push: | ||
branches: ['1.x'] | ||
|
||
jobs: | ||
unit: | ||
name: 'Unit tests' | ||
runs-on: 'ubuntu-latest' | ||
env: | ||
SYMFONY_REQUIRE: '${{matrix.symfony-require}}' | ||
|
||
strategy: | ||
matrix: | ||
php-version: ['8.1'] | ||
symfony-require: ['5.0.*', '5.1.*', '5.2.*', '5.3.*', '5.4.*', '6.0.*', '6.1.*', '6.2.*'] | ||
|
||
steps: | ||
- name: 'Setup PHP' | ||
uses: 'shivammathur/setup-php@v2' | ||
with: | ||
php-version: '${{ matrix.php-version }}' | ||
coverage: 'none' | ||
|
||
- name: 'Checkout sources' | ||
uses: 'actions/checkout@v3' | ||
|
||
- name: 'Install dependencies' | ||
run: 'composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist' | ||
|
||
- name: 'Execute Unit tests' | ||
run: 'vendor/bin/phpunit' | ||
|
||
coverage: | ||
name: 'Code coverage' | ||
runs-on: 'ubuntu-latest' | ||
|
||
strategy: | ||
matrix: | ||
php-version: ['8.1'] | ||
|
||
steps: | ||
- name: 'Setup PHP' | ||
uses: 'shivammathur/setup-php@v2' | ||
with: | ||
php-version: '${{ matrix.php-version }}' | ||
coverage: 'pcov' | ||
|
||
- name: 'Checkout sources' | ||
uses: 'actions/checkout@v3' | ||
|
||
- name: 'Install dependencies' | ||
run: 'composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist' | ||
|
||
- name: 'Execute Unit tests' | ||
run: 'vendor/bin/phpunit --coverage-clover=coverage.xml' | ||
|
||
- name: 'Upload coverage file' | ||
uses: 'codecov/codecov-action@v3' | ||
with: | ||
files: 'coverage.xml' |
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