fix: use latest semantic-release-action #23
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
on: | |
push: | |
name: CI | |
jobs: | |
dependency-validation: | |
name: Dependency Validation | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/composer-cache | |
key: "${{ runner.os }}-${{ hashFiles('**/composer.lock') }}" | |
- name: Install Composer | |
uses: php-actions/composer@v6 | |
- name: Ensure that composer.json is valid | |
run: composer validate --no-ansi --strict composer.json | |
- name: Ensure that dependencies can be installed | |
run: composer install --no-ansi --dry-run | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: | |
- dependency-validation | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/composer-cache | |
key: "${{ runner.os }}-${{ hashFiles('**/composer.lock') }}" | |
- name: Install Composer | |
uses: php-actions/composer@v6 | |
- name: Run PHPUnit | |
run: make test-unit | |
- name: Run php-cs-fixer | |
run: make php-cs-fixer |