Refactor installation of tools with PHIVE #97
Workflow file for this run
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: Automated Testing | |
on: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
composer: | |
name: Validate composer files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- uses: actions/checkout@v4 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
php-cs-check: | |
name: 'PHP CS Fixer: check' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- uses: actions/checkout@v4 | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: "php-${{ runner.php-version }}-composer-${{ hashFiles('**/composer.lock') }}" | |
restore-keys: "php-${{ runner.php-version }}-composer-" | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- name: 'Run all PHPUnit tests' | |
run: composer run cs-fixer-check | |
phpunit: | |
name: 'Tests: Unit' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- uses: actions/checkout@v4 | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: "php-${{ runner.php-version }}-composer-${{ hashFiles('**/composer.lock') }}" | |
restore-keys: "php-${{ runner.php-version }}-composer-" | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Cache tools installed with PHIVE | |
uses: actions/cache@v4 | |
with: | |
path: "${{ runner.temp }}/.phive" | |
key: "php-${{ matrix.php-version }}-phive-${{ hashFiles('.phive/phars.xml') }}" | |
restore-keys: "php-${{ matrix.php-version }}-phive-" | |
- name: Install PHIVE | |
uses: szepeviktor/phive@v1 | |
with: | |
home: "${{ runner.temp }}/.phive" | |
binPath: "${{ github.workspace }}/tools/phive" | |
- name: Install PHP tools with PHIVE | |
uses: szepeviktor/phive-install@v1 | |
with: | |
home: "${{ runner.temp }}/.phive" | |
binPath: "${{ github.workspace }}/tools/phive" | |
trustGpgKeys: "4AA394086372C20A" | |
- name: 'Run all PHPUnit tests' | |
run: composer run phpunit |