add tag and changelog to publisher #531
This file contains hidden or 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: | |
| - pull_request | |
| - push | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| coverage: none | |
| - name: Composer install | |
| run: composer install --no-interaction --no-ansi --no-progress | |
| - name: Run PHPStan | |
| run: vendor/bin/phpstan | |
| phpunit: | |
| name: "PHPUnit (PHP: ${{ matrix.php-versions }})" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-versions: | |
| - 8.3 | |
| - 8.4 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| coverage: none | |
| - name: Composer install | |
| run: composer install --no-interaction --no-ansi --no-progress | |
| - name: Run PHPUnit | |
| run: vendor/bin/phpunit |