also test with PHP 8.3 #155
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: | |
branches: | |
- main | |
- boris/* | |
- develop | |
pull_request: | |
branches: [ main ] | |
jobs: | |
versions: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php-versions: | |
- { php: '5.6', phpunit: '5.7.27', prepare_tests_run: 'sed -i -e "s#: void##" test/*.php' } | |
- { php: '7.3', phpunit: '8.5', prepare_tests_run: 'true' } | |
- { php: '7.4', phpunit: '8.5', prepare_tests_run: 'true' } | |
- { php: '8.0', phpunit: '8.5', prepare_tests_run: 'true' } | |
- { php: '8.1', phpunit: 'latest', prepare_tests_run: 'true' } | |
- { php: '8.2', phpunit: 'latest', prepare_tests_run: 'true' } | |
- { php: '8.3', phpunit: 'latest', prepare_tests_run: 'true' } | |
name: PHP ${{ matrix.php-versions.php }} Test on ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions.php }} | |
coverage: xdebug | |
tools: phpunit:${{ matrix.php-versions.phpunit }} | |
- name: prepare sources | |
run: ${{ matrix.php-versions.prepare_tests_run }} | |
- name: run unittests | |
run: make unittests | |
systems: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest, macos-latest, windows-latest ] | |
name: Test on ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: latest | |
tools: phpunit | |
- name: run unittests | |
run: make unittests |