Changes generated by 049c4f65b30eed5c8a7a37f91a815da11a5bf98e #150
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: build | |
on: push | |
jobs: | |
test_library: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [8.1, 8.2, 8.3] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.version }} | |
- run: composer install --no-interaction | |
- name: Test Library | |
run: ./vendor/phpunit/phpunit/phpunit |