1234567891011121314151617181920212223242526272829 |
- name: Tester
- on:
- push:
- branches:
- - master
- pull_request:
- jobs:
- PHPUnit:
- name: phpunit-php${{ matrix.php-version }}
- runs-on: "ubuntu-latest"
- strategy:
- fail-fast: true
- matrix:
- php-version:
- - 8.1
- - 8.2
- - 8.3
- steps:
- - name: Checkout Code
- uses: actions/checkout@v4
- - name: PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php-version }}
- - name: Install Dependencies
- run: composer install --no-progress
- - name: Run PHPUnit
- run: composer test
|