Feature: File multi-column anonymizer, inject sample rows in database from a CSV file #593
This file contains hidden or 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: "Static Analysis" | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/static-analysis.yml | |
| - composer.* | |
| - phpstan.neon.dist | |
| - src/** | |
| - tests/** | |
| push: | |
| branches: | |
| - "main" | |
| paths: | |
| - .github/workflows/static-analysis.yml | |
| - composer.* | |
| - phpstan.neon.dist | |
| - src/** | |
| - tests/** | |
| jobs: | |
| phpstan: | |
| name: "Static Analysis" | |
| runs-on: "ubuntu-22.04" | |
| strategy: | |
| matrix: | |
| php-version: | |
| - "8.2" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| php-version: ${{ matrix.php-version }} | |
| tools: cs2pr | |
| - name: Install dependencies with Composer | |
| uses: ramsey/composer-install@v2 | |
| - name: Run static analysis with phpstan/phpstan | |
| run: vendor/bin/phpstan --error-format=checkstyle | cs2pr |