Run tests on 32-bit PHP #594
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| PHPSTAN_PHP_VERSION: "8.5" | |
| COVERAGE_PHP_VERSION: "8.5" | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ env.PHPSTAN_PHP_VERSION }} | |
| - name: Install composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan --no-progress | |
| coding-standard: | |
| name: Coding Standard | |
| uses: brick/coding-standard/.github/workflows/coding-standard.yml@v4 | |
| with: | |
| php-version: "8.2" | |
| working-directory: "tools/ecs" | |
| phpunit: | |
| name: PHPUnit | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: | |
| - "8.2" | |
| - "8.3" | |
| - "8.4" | |
| - "8.5" | |
| calculator: | |
| - GMP | |
| - BCMath | |
| - Native | |
| deps: | |
| - "highest" | |
| include: | |
| - php-version: "8.2" | |
| calculator: GMP | |
| deps: "lowest" | |
| - php-version: "8.2" | |
| calculator: BCMath | |
| deps: "lowest" | |
| - php-version: "8.2" | |
| calculator: Native | |
| deps: "lowest" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| coverage: pcov | |
| - name: Install composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.deps }} | |
| - name: Run PHPUnit | |
| run: vendor/bin/phpunit | |
| env: | |
| CALCULATOR: ${{ matrix.calculator }} | |
| if: ${{ matrix.php-version != env.COVERAGE_PHP_VERSION }} | |
| - name: Run PHPUnit with coverage | |
| run: vendor/bin/phpunit --coverage-clover clover.xml | |
| env: | |
| CALCULATOR: ${{ matrix.calculator }} | |
| if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }} | |
| - name: Run PHPUnit with bcscale() | |
| run: vendor/bin/phpunit | |
| env: | |
| CALCULATOR: BCMath | |
| BCMATH_DEFAULT_SCALE: 8 | |
| if: ${{ matrix.calculator == 'BCMath' }} | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }} | |
| phpunit-32bit: | |
| name: PHPUnit (32-bit) | |
| runs-on: ubuntu-latest | |
| container: | |
| image: php:8.5-cli | |
| options: --platform linux/386 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| calculator: | |
| - GMP | |
| - BCMath | |
| - Native | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y libgmp-dev unzip | |
| docker-php-ext-install gmp bcmath > /dev/null | |
| - name: Install composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Ensure 32-bit | |
| run: | | |
| php -r 'echo "PHP_INT_SIZE=", PHP_INT_SIZE, "\n";' | |
| php -r 'exit(PHP_INT_SIZE === 4 ? 0 : 1);' | |
| - name: Run PHPUnit | |
| run: vendor/bin/phpunit | |
| env: | |
| CALCULATOR: ${{ matrix.calculator }} |