-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed badges for img.shields.io * Updated github workflow * Added missing actions php version * Changed licence badge for img.shields.io
- Loading branch information
1 parent
fe371dc
commit 0897dd9
Showing
3 changed files
with
112 additions
and
55 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,103 @@ | ||
name: "Tests" | ||
|
||
on: | ||
pull_request: null | ||
push: | ||
branches: | ||
- "0.*.x" | ||
|
||
jobs: | ||
phpunit: | ||
name: "PHPUnit" | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- php-version: 7.1 | ||
symfony-version: 4.4.* | ||
- php-version: 7.4 | ||
symfony-version: 4.4.* | ||
- php-version: 7.2 | ||
symfony-version: 5.1.* | ||
- php-version: 7.4 | ||
symfony-version: 5.1.* | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Setup PHP" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
php-version: ${{ matrix.php-version }} | ||
|
||
- name: "Install dependencies with composer" | ||
run: | | ||
composer require --no-update symfony/workflow:${{ matrix.symfony-version }} | ||
composer update --no-interaction --no-progress --no-suggest | ||
- name: "Run tests with phpunit/phpunit" | ||
run: vendor/bin/phpunit | ||
|
||
checkstyke: | ||
name: "Checkstyle" | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- php-version: 7.4 | ||
symfony-version: 5.1.* | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Setup PHP" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
php-version: ${{ matrix.php-version }} | ||
|
||
- name: "Install dependencies with composer" | ||
run: | | ||
composer update --no-interaction --no-progress --no-suggest | ||
- name: "Run checkstyle with squizlabs/php_codesniffer" | ||
run: vendor/bin/phpcs | ||
|
||
codecov: | ||
name: "Code coverage" | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- php-version: 7.4 | ||
symfony-version: 5.1.* | ||
|
||
steps: | ||
- name: "Checkout" | ||
uses: actions/[email protected] | ||
|
||
- name: "Setup PHP" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: xdebug | ||
php-version: ${{ matrix.php-version }} | ||
|
||
- name: "Install dependencies with composer" | ||
run: | | ||
composer require --no-update symfony/workflow:${{ matrix.symfony-version }} | ||
composer update --no-interaction --no-progress --no-suggest | ||
- name: "Run tests with phpunit/phpunit" | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
run: | | ||
vendor/bin/phpunit --coverage-clover coverage.xml | ||
- name: "Upload coverage to Codecov" | ||
uses: codecov/codecov-action@v1 |
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