Merge pull request #1048 from nfephp-org/removendo-schemas-duplicados #281
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
name: Pipeline | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
jobs: | |
testsuite: | |
name: Testes Automatizados | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ["7.4", "8.0", "8.1", "8.2", "8.3"] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, intl, mysql, zlib, dom, openssl, soap, json, simplexml, libxml | |
coverage: pcov | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Composer Install | |
run: | | |
composer install --no-progress -o --no-ansi --no-interaction | |
- name: Check php code style | |
run: composer phpcs | |
- name: Análises estáticas | |
run: | | |
composer stan | |
- name: Rodando PHPUnit | |
if: matrix.php-version != '8.2' | |
run: | | |
composer test | |
- name: Rodando PHPUnit | |
if: matrix.php-version == '8.2' | |
run: | | |
composer test-with-coverage | |
- name: Submit code coverage | |
if: matrix.php-version == '8.2' | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
fail_ci_if_error: true |