Skip to content

feat: php 8.2.10

feat: php 8.2.10 #53

Workflow file for this run

name: push
on:
push:
branches:
- symfony-6
jobs:
build:
runs-on: ubuntu-latest
name: Code build, lint and tests
steps:
- uses: actions/checkout@v1
with:
ref: symfony-5
- name: Reattach HEAD to Head Ref
run: git checkout "$(echo ${{ github.head_ref }} | sed -E 's|refs/[a-zA-Z]+/||')"
if: github.head_ref != ''
- name: Reattach HEAD to Ref
run: git checkout "$(echo ${{ github.ref }} | sed -E 's|refs/[a-zA-Z]+/||')"
if: github.head_ref == ''
- name: Build
run: make env=ci start;make env=ci xoff
- name: DDD LAYERS
run: make env=ci layer
- name: DB Schema validation
run: make env=ci schema-validate
- name: Static tools (analyzers)
run: make env=ci cs-check;make env=ci phpstan;make env=ci layer;make env=ci psalm
- name: Tests
run: make env=ci xon;make env=ci conf="--coverage-clover build/logs/clover.xml" phpunit
- name: ARTIFACT
run: make env=ci artifact
- name: Coveralls
run: make env=ci coverage