Create LICENSE (#7) #76
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
unit-tests: | |
name: Unit tests | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
php-versions: [ '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Run tests - phpunit | |
run: | | |
composer install | |
./vendor/bin/phpunit --configuration phpunit.xml.dist tests/Unit | |
static-analysis: | |
name: Static Analysis | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
php-versions: [ '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Run tests - phpunit | |
run: | | |
composer install | |
./vendor/bin/phpstan analyse --configuration phpstan.neon src |