Documentation updates #56
Workflow file for this run
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: Run tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-php: | |
name: Test on PHP ${{ matrix.php-version }} (${{ matrix.php-extensions }}) | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
php-version: ['8.2', '8.3'] | |
php-extensions: ['dbase', ':dbase'] | |
os: [ubuntu-latest] | |
experimental: [false] | |
composer-options: [''] | |
include: | |
- { php-version: '8.4', php-extensions: 'dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest } | |
- { php-version: '8.4', php-extensions: ':dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# Fetch some commits for Scrutinizer coverage upload | |
fetch-depth: 15 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: ${{ matrix.php-extensions }} | |
coverage: xdebug | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: highest | |
composer-options: ${{ matrix.composer-options }} | |
- name: Run PHP tests | |
run: composer run phpunit | |
- name: Run PHP examples | |
run: | | |
php -f examples/create_shapefile.php | |
php -f examples/read_point.php > /dev/null | |
php -f examples/read_polygon.php > /dev/null | |
- name: Send coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: unit-${{ matrix.php-version }}-${{ matrix.php-extensions }}-${{ matrix.os }} | |
name: phpunit-${{ matrix.php-version }}-${{ matrix.php-extensions }}-${{ matrix.os }} | |
- name: Send coverage to Scrutinizer | |
uses: sudo-bot/action-scrutinizer@latest | |
# Do not run this step on forked versions of the main repository (example: contributor forks) | |
if: github.repository == 'phpmyadmin/shapefile' | |
with: | |
cli-args: "--format=php-clover build/logs/clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}" |