Merge pull request #607 from robmachado/master #43
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 | |
pull_request: | |
branches: | |
- master | |
jobs: | |
testsuite: | |
name: Testes Automatizados | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ['7.4', '8.0'] | |
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@v2 | |
- name: Composer Install | |
run: | | |
composer install --no-progress -o --no-ansi --no-interaction | |
- name: Rodando PHPUnit | |
run: | | |
composer test |