Merge branch 'master' into fix/rdfnamespace-issue-32 #183
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: "Tests" | |
on: [push, pull_request] | |
jobs: | |
linux-tests: | |
name: Linux-Tests with PHP ${{ matrix.php-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php-versions: ['8.0', '8.1', '8.2', '8.3'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
ini-values: memory_limit=1G | |
- name: Install Composer dependencies | |
run: composer update --no-progress --no-suggest --prefer-dist --optimize-autoloader | |
- name: Install other dependencies | |
run: sudo apt-get install graphviz raptor2-utils | |
- name: Tests | |
run: vendor/bin/phpunit | |
windows-tests: | |
name: Windows-Tests with PHP ${{ matrix.php-versions }} | |
runs-on: windows-2019 | |
strategy: | |
fail-fast: true | |
matrix: | |
php-versions: ['8.0', '8.1', '8.2', '8.3'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
ini-values: memory_limit=1G | |
- name: Install Composer dependencies | |
run: composer update --no-progress --no-suggest --prefer-dist --optimize-autoloader | |
- name: Tests | |
run: vendor/bin/phpunit --exclude-group linux |