feat: php 8.2.10 #201
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr | |
on: | |
pull_request: | |
branches: | |
- symfony-6 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Code build, lint and tests | |
steps: | |
- uses: actions/checkout@v1 | |
- 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 |