Skip to content

Update/deps

Update/deps #66

Workflow file for this run

name: PHP Checks
on:
push:
branches: [ "trunk" ]
pull_request:
branches: [ "trunk" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:

Check failure on line 21 in .github/workflows/php.yml

View workflow run for this annotation

GitHub Actions / PHP Checks

Invalid workflow file

The workflow is not valid. .github/workflows/php.yml (Line: 21, Col: 14): Unexpected value '' .github/workflows/php.yml (Line: 22, Col: 9): Unexpected value 'php-version'
php-version: '8.3'
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHPCS
run: composer lint