funguje edit príspevku aj pridávanie nového #10
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: PHP check syntax errors | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: overtrue/[email protected] | |
- uses: php-actions/phpcs@v1 | |
with: | |
php_version: 8.2 | |
path: App/ | |
standard: PSR12 | |
args: "--runtime-set ignore_warnings_on_exit 1" |