Merge branch 'oprava-tlacitka-aktivace-deaktivace' into testing #408
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: Kontrola PHP syntaxe | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
php_syntax_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the image | |
run: docker build . --tag userdb-web-syntacheck | |
- name: Run php-cs-fixer check | |
run: docker run userdb-web-syntacheck ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer check --diff |