Adicionando D700, D730, D750, D760 e D761 NFCom no BlockD ICMSIPI #53
This file contains hidden or 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', '8.1'] | |
| 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 |