DOMImproved.php adicionado método para adicionar atributos aos nodes #71
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'] | |
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 | |
- name: checkout | |
uses: actions/checkout@v3 | |
- 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 PHP 7.4 | |
if: matrix.php-version == '7.4' | |
run: | | |
composer stan | |
- name: Análises estáticas PHP 8.0 | |
if: matrix.php-version == '8.0' | |
run: | | |
composer stan80 | |
- name: Análises estáticas PHP 8.1 | |
if: matrix.php-version == '8.1' | |
run: | | |
composer stan81 | |
- name: Análises estáticas PHP 8.2 | |
if: matrix.php-version == '8.2' | |
run: | | |
composer stan82 | |
- name: Rodando PHPUnit | |
run: | | |
composer test |