for the 56 github event+action notification combinations, i setup rul… #46
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: CI | |
| on: [push] | |
| jobs: | |
| php: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: [7.4] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install dependencies | |
| run: composer install --no-interaction --no-progress | |
| - name: Run tests | |
| run: php${{ matrix.php }} vendor/bin/phpunit --verbose --fail-on-warning --coverage-text | |
| - name: Run phpstan | |
| run: php${{ matrix.php }} vendor/bin/phpstan analyse |