Skip to content

Bump shivammathur/setup-php from 2.24.0 to 2.29.0 #149

Bump shivammathur/setup-php from 2.24.0 to 2.29.0

Bump shivammathur/setup-php from 2.24.0 to 2.29.0 #149

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@2.29.0
with:
php-version: ${{ matrix.php }}
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: "~/.cache/composer"
key: "php-${{ matrix.php }}-composer2-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-${{ matrix.php }}-composer2-"
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
run: ./vendor/bin/phpstan analyze --no-progress
- name: PHPUnit tests
run: ./vendor/bin/phpunit tests/phpunit --fail-on-warning