it works propably #19
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: Symfony Application Check | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Running start.sh Script | |
run: bash start.sh | |
- name: Application Verification | |
run: docker exec php composer cache:clear | |
- name: Running PHPStan | |
run: docker exec php composer code:analyse | |
- name: Running PHP-CS-Fixer | |
run: docker exec php composer code:fix -- --dry-run --diff -vvv | |
- name: Running PHPUnit | |
run: docker exec php composer test:cc |