Pridat moznost vyfiltrovat endpointy, ktore sa zobrazia v open api (#… #198
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: PHPunit | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: null | |
| jobs: | |
| phpunit: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: [ '8.3', '8.4' ] | |
| name: PHPunit PHP ${{ matrix.php }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - name: Composer update | |
| run: composer update --no-progress --no-interaction | |
| - name: PHPunit | |
| run: vendor/bin/phpunit --coverage-text |