Merge pull request #194 from cultuurnet/UPS-5145/upgrade-to-php-7.4 #143
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: CI | |
on: push | |
jobs: | |
phing: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.4'] | |
name: Phing ${{ matrix.php-versions }} | |
steps: | |
- name: π€ Checkout project | |
uses: actions/checkout@v4 | |
- name: π Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
ini-values: xdebug.mode=coverage | |
extensions: bcmath, tidy | |
tools: composer | |
- name: βοΈ Check PHP Version | |
run: php -v | |
- name: π Validate composer.json and composer.lock | |
run: composer validate | |
- name: π© Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}-v1 | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: π¦ Install dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
run: composer install --no-progress --no-suggest | |
- name: β Run Phing | |
run: composer run-script phing |