2022-09-18 21:50:25 +08:00
|
|
|
name: analyse-php
|
2021-11-06 00:18:06 +08:00
|
|
|
|
2023-10-04 16:18:24 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '**.php'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '**.php'
|
2021-11-06 00:18:06 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-02-13 21:03:41 +08:00
|
|
|
if: ${{ github.ref != 'refs/heads/l10n_development' }}
|
2022-09-18 21:50:25 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2021-11-06 00:18:06 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
2024-03-18 22:24:14 +08:00
|
|
|
php-version: 8.3
|
2021-11-06 00:18:06 +08:00
|
|
|
extensions: gd, mbstring, json, curl, xml, mysql, ldap
|
|
|
|
|
|
|
|
- name: Get Composer Cache Directory
|
|
|
|
id: composer-cache
|
|
|
|
run: |
|
2022-11-03 22:14:22 +08:00
|
|
|
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
2021-11-06 00:18:06 +08:00
|
|
|
|
|
|
|
- name: Cache composer packages
|
2024-03-18 22:24:14 +08:00
|
|
|
uses: actions/cache@v4
|
2021-11-06 00:18:06 +08:00
|
|
|
with:
|
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2024-03-18 22:24:14 +08:00
|
|
|
key: ${{ runner.os }}-composer-8.3
|
2022-09-18 21:50:25 +08:00
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2021-11-06 00:18:06 +08:00
|
|
|
|
2021-11-06 00:27:59 +08:00
|
|
|
- name: Install composer dependencies
|
2021-11-06 00:18:06 +08:00
|
|
|
run: composer install --prefer-dist --no-interaction --ansi
|
|
|
|
|
2022-09-18 21:50:25 +08:00
|
|
|
- name: Run static analysis check
|
|
|
|
run: composer check-static
|