Merge pull request #140 from maciejlew/workflow-fix #62
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| tests: | |
| name: PHP ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: | |
| - 7.0 | |
| - 7.1 | |
| - 7.2 | |
| - 7.3 | |
| - 7.4 | |
| - 8.0 | |
| - 8.1 | |
| - 8.2 | |
| - 8.3 | |
| - 8.4 | |
| - 8.5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: composer-${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('composer.json') }} | |
| - name: Install dependencies | |
| run: composer update --prefer-dist --no-interaction | |
| - name: Audit dependencies | |
| run: composer audit || true | |
| - name: Running unit tests | |
| run: php vendor/bin/phpunit --configuration tests-resources/phpunit.dist.xml --testsuite unit |