Build #50
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: Build | |
on: | |
push: ~ | |
pull_request: ~ | |
release: | |
types: [created] | |
schedule: | |
- | |
cron: "0 1 * * 6" # Run at 1am every Saturday | |
workflow_dispatch: ~ | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [7.4, 8.0, 8.1] | |
symfony: [4.4.*, 5.4.*, 6.0.*] | |
exclude: | |
- php: 7.4 | |
symfony: 6.0.* | |
steps: | |
- | |
uses: actions/checkout@v2 | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
extensions: intl | |
tools: symfony | |
coverage: none | |
- | |
name: Get Composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- | |
name: Cache Composer | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.php }}-composer- | |
- | |
name: Require Symfony version | |
run: composer require symfony/property-access:${{ matrix.symfony }} --no-interaction --update-with-all-dependencies --prefer-dist | |
- | |
name: Install PHP dependencies | |
run: composer install --no-interaction | |
- | |
name: Validate composer.json | |
run: composer validate --ansi --strict |