Bug 139 - =?UTF-8?B?[.....]==?= encoded string in From name #751
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: run-integration-tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| run-tests: | |
| runs-on: ${{ matrix.os }} | |
| services: | |
| greenmail: | |
| image: greenmail/standalone:latest | |
| env: | |
| GREENMAIL_OPTS: -Dgreenmail.setup.test.all -Dgreenmail.hostname=0.0.0.0 -Dgreenmail.auth.disabled -Dgreenmail.verbose | |
| ports: | |
| - 3143:3143 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ 8.4, 8.3, 8.2, 8.1 ] | |
| dependency-version: [ prefer-stable ] | |
| name: ${{ matrix.os }} - P${{ matrix.php }} - ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache/files | |
| key: dependencies-laravel-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - name: Install dependencies | |
| run: | | |
| composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
| - name: Execute tests | |
| run: vendor/bin/pest --testsuite Integration |