Release Billplz 6.0 with Money objects, bundled Codex internals, and updated CI #448
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: tests | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| - "windows-latest" | |
| php: | |
| - 8.3 | |
| - 8.4 | |
| - 8.5 | |
| dependencies: | |
| - "highest" | |
| - "lowest" | |
| experimental: | |
| - false | |
| name: PHP${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.dependencies }}) | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, intl, fileinfo | |
| coverage: none | |
| - name: Install dependencies | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| dependency-versions: "${{ matrix.dependencies }}" | |
| composer-options: "--prefer-dist --no-cache" | |
| - name: Installed dependencies | |
| run: composer show -D | |
| - name: Execute tests | |
| run: composer run test |