Merge pull request #803 from ruudk/phpstan #622
This file contains 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 | |
tests: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
- '8.4' | |
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 |