Update init data.xml
file with new tenant data (presentation v5.0)
#223
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: PHPStan | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
phpstan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: php-actions/composer@v6 | |
with: | |
command: update | |
php_version: "7.4" | |
- name: PHPStan Static Analysis | |
uses: php-actions/phpstan@v3 | |
with: | |
configuration: ./.github/phpstan.neon |