42 lines
914 B
YAML
42 lines
914 B
YAML
|
name: Code Checker
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Update composer
|
||
|
run: composer update
|
||
|
|
||
|
- name: Validate composer.json and composer.lock
|
||
|
run: composer validate
|
||
|
|
||
|
- 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
|
||
|
if: steps.composer-cache.outputs.cache-hit != 'true'
|
||
|
run: composer install --prefer-dist --no-progress --no-suggest
|
||
|
|
||
|
- name: PHP Lint
|
||
|
uses: davidlienhard/php-simple-lint@1
|
||
|
with:
|
||
|
folder: './'
|
||
|
ignore: './vendor/\*'
|
||
|
|
||
|
- uses: symfonycorp/security-checker-action@v5
|