mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-24 21:05:03 +02:00
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
name: Static analysis
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- "!l10n_*" # Dont test localization branches
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
- "!l10n_*"
|
|
|
|
jobs:
|
|
phpstan:
|
|
name: Static analysis
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Get Composer Cache Directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist --no-progress
|
|
|
|
- name: Lint config files
|
|
run: ./bin/console lint:yaml config --parse-tags
|
|
|
|
- name: Lint twig templates
|
|
run: ./bin/console lint:twig templates --env=prod
|
|
|
|
- name: Lint translations
|
|
run: ./bin/console lint:xliff translations
|
|
|
|
- name: Check dependencies for security
|
|
uses: symfonycorp/security-checker-action@v3
|
|
|
|
- name: Check doctrine mapping
|
|
run: ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction
|
|
|
|
- name: Generate dev container
|
|
run: ./bin/console cache:clear --env dev
|
|
|
|
- name: Run PHPstan
|
|
run: composer phpstan
|