Skip to content

Release Billplz 6.0 with Money objects, bundled Codex internals, and updated CI #86

Release Billplz 6.0 with Money objects, bundled Codex internals, and updated CI

Release Billplz 6.0 with Money objects, bundled Codex internals, and updated CI #86

Workflow file for this run

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