Fix typo in README.md (#815) #658
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: | |
| jobs: | |
| lowest-version-tests: | |
| name: Build lowest version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| extensions: bcmath, gmp, intl, dom, mbstring | |
| - name: Setup Problem Matchers for PHPUnit | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up locales | |
| run: ./hack/setup-locales.sh | |
| - uses: "ramsey/composer-install@v3" | |
| with: | |
| dependency-versions: "lowest" | |
| - name: Run tests | |
| run: composer test | |
| early-test-php-next: | |
| name: Build with upcoming PHP version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.6' | |
| extensions: bcmath, gmp, intl, dom, mbstring | |
| - name: Setup Problem Matchers for PHPUnit | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up locales | |
| run: ./hack/setup-locales.sh | |
| - uses: "ramsey/composer-install@v3" | |
| with: | |
| composer-options: "--ignore-platform-req=php+" | |
| - name: Run tests | |
| run: composer test || true | |
| tests: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| - '8.4' | |
| - '8.5' | |
| steps: | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: bcmath, gmp, intl, dom, mbstring | |
| ini-values: zend.assertions=1 | |
| - name: Setup Problem Matchers for PHPUnit | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up locales | |
| run: ./hack/setup-locales.sh | |
| - uses: "ramsey/composer-install@v3" | |
| - name: Run tests | |
| run: vendor/bin/phpunit | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: bcmath, gmp, intl, dom, mbstring | |
| - uses: "ramsey/composer-install@v3" | |
| - name: PHPStan | |
| run: vendor/bin/phpstan | |
| docs: | |
| name: Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| architecture: 'x64' | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install enchant-2 | |
| pip install --user -r doc/requirements.txt | |
| - name: Build docs | |
| run: | | |
| export PATH="/home/runner/.local/bin:$PATH" | |
| make -C doc SPHINXOPTS='-nW' html | |
| make -C doc spelling |