Skip to content

replace after annotation with attribute #57

replace after annotation with attribute

replace after annotation with attribute #57

name: Static code analysis
on:
push:
branches:
- develop
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4]
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer update --prefer-dist --no-progress --no-suggest
- name: Perform static code analysis
run: composer test:analysis