Fix lint failures for Pint 1.28 and PHP 8.5 #90
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: coveralls | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| php: | |
| - 8.3 | |
| dependencies: | |
| - "highest" | |
| 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, sqlite3, pdo_sqlite, bcmath, fileinfo | |
| coverage: xdebug | |
| - 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:coverage | |
| - name: Upload coverage results to Coveralls | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| set -euo pipefail | |
| COVERAGE_FILE="${{ github.workspace }}/build/logs/clover.xml" | |
| composer global require php-coveralls/php-coveralls | |
| if [ ! -f "$COVERAGE_FILE" ]; then | |
| echo "Coverage file not found: $COVERAGE_FILE" | |
| ls -la "${{ github.workspace }}/build" || true | |
| ls -la "${{ github.workspace }}/build/logs" || true | |
| exit 1 | |
| fi | |
| php-coveralls --root_dir="${{ github.workspace }}" --coverage_clover="$COVERAGE_FILE" -v |