IBX-11133: Added integrated-help as opt-in package for 5.0.x-dev (#130) #304
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: | |
| branches: | |
| - main | |
| - '[0-9]+.[0-9]+' | |
| pull_request: ~ | |
| jobs: | |
| cs-fix: | |
| name: Run code style check | |
| runs-on: "ubuntu-24.04" | |
| strategy: | |
| matrix: | |
| php: | |
| - '8.0' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ibexa/gh-workflows/actions/composer-install@main | |
| with: | |
| gh-client-id: ${{ secrets.AUTOMATION_CLIENT_ID }} | |
| gh-client-secret: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | |
| satis-network-key: ${{ secrets.SATIS_NETWORK_KEY }} | |
| satis-network-token: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
| - name: Run code style check | |
| run: composer run-script check-cs -- --format=checkstyle | cs2pr | |
| tests: | |
| name: Tests | |
| runs-on: "ubuntu-24.04" | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: | |
| - '7.3' | |
| - '7.4' | |
| - '8.3' | |
| - '8.4' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ibexa/gh-workflows/actions/composer-install@main | |
| with: | |
| gh-client-id: ${{ secrets.AUTOMATION_CLIENT_ID }} | |
| gh-client-secret: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | |
| satis-network-key: ${{ secrets.SATIS_NETWORK_KEY }} | |
| satis-network-token: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
| - name: Setup problem matchers for PHPUnit | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Run PHPStan analysis | |
| run: composer run-script phpstan | |
| - name: Run test suite | |
| run: composer run-script --timeout=600 test |