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